24 lines
342 B
SCSS
24 lines
342 B
SCSS
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background-color: $background-color;
|
|
color: $main-text-color;
|
|
line-height: 1.6;
|
|
padding: 2rem;
|
|
}
|
|
|
|
h1 {
|
|
margin-bottom: 2rem;
|
|
font-size: 2rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.2rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|