33 lines
627 B
SCSS
33 lines
627 B
SCSS
.header {
|
|
background: black url(../img/header/img.png) no-repeat 50% 30% / cover;
|
|
height: 100vh;
|
|
padding-top: 110px;
|
|
}
|
|
|
|
.header__title {
|
|
font-family: Montserrat, sans-serif;
|
|
font-size: 82px;
|
|
font-weight: bold;
|
|
color: white;
|
|
text-transform: capitalize;
|
|
text-align: center;
|
|
}
|
|
|
|
.header__subtitle {
|
|
font-family: Lato, sans-serif;
|
|
font-size: 30px;
|
|
color: $primary;
|
|
text-align: center;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.header__description {
|
|
margin-top: 20px;
|
|
font-family: Montserrat, sans-serif;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: $regular-text;
|
|
text-transform: uppercase;
|
|
text-align: center;
|
|
}
|