20 lines
371 B
SCSS
20 lines
371 B
SCSS
body {
|
|
background-image: url(img/background.jpg);
|
|
font-family: "Montserrat", sans-serif;
|
|
font-optical-sizing: auto;
|
|
text-align: justify;
|
|
line-height: 25px;
|
|
color: var(--color);
|
|
}
|
|
|
|
.content {
|
|
margin: -60px auto 0 auto;
|
|
padding: 0 var(--space-small);
|
|
max-width: 1100px;
|
|
|
|
@media ($mobile-breakpoint) {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
|