26 lines
385 B
CSS
26 lines
385 B
CSS
html, body {
|
|
margin: 0;
|
|
border: none;
|
|
padding: 0;
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
background-color: rgb(240, 240, 242);
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
padding: 32px 50px;
|
|
font-family: 'system-ui', sans-serif;
|
|
}
|
|
|
|
.main-title {
|
|
display: block;
|
|
margin-bottom: 18px;
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
color: rgb(16, 16, 16);
|
|
}
|