27 lines
389 B
SCSS
27 lines
389 B
SCSS
|
|
@import '../fonts/poppins';
|
||
|
|
@import '../fonts/volkhov';
|
||
|
|
@import '../helpers/space';
|
||
|
|
|
||
|
|
body {
|
||
|
|
@extend .poppins-regular;
|
||
|
|
}
|
||
|
|
|
||
|
|
h1 {
|
||
|
|
@extend .volkhov-regular;
|
||
|
|
font-size: 40px;
|
||
|
|
text-align: center;
|
||
|
|
color: #484848;
|
||
|
|
margin-bottom: 48px;
|
||
|
|
}
|
||
|
|
|
||
|
|
h2 {
|
||
|
|
@extend .poppins-medium;
|
||
|
|
font-size: 20px;
|
||
|
|
line-height: 30px;
|
||
|
|
}
|
||
|
|
|
||
|
|
h3 {
|
||
|
|
@extend .poppins-medium;
|
||
|
|
font-size: 16px;
|
||
|
|
line-height: 26px;
|
||
|
|
}
|