41 lines
554 B
SCSS
41 lines
554 B
SCSS
html {
|
|
font-size: 16px;
|
|
}
|
|
body {
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
font-family: 'Montserrat', sans-serif;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.7rem;
|
|
line-height: 3.3rem;
|
|
display: block;
|
|
@media screen and (max-width: $screen-phone) {
|
|
& {
|
|
font-size: 2.5rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
h3 {
|
|
color: #ff5800;
|
|
font-size: 1.5rem;
|
|
line-height: 2rem;
|
|
}
|
|
|
|
p {
|
|
margin: 0 1rem 2rem;
|
|
font-size: 1rem;
|
|
line-height: 1.5rem;
|
|
break-inside: avoid;
|
|
}
|
|
|
|
a {
|
|
color: #FFF;
|
|
text-decoration: underline;
|
|
font-weight: bold;
|
|
} |