33 lines
601 B
SCSS
33 lines
601 B
SCSS
.intro_block {
|
|
|
|
background-size: cover;
|
|
background-position: center center;
|
|
color: $c-white;
|
|
height: 784px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
h1 {
|
|
@extend .goudy;
|
|
margin: 0;
|
|
font-size: 96px;
|
|
line-height: 96px;
|
|
text-align: center;
|
|
}
|
|
|
|
p.sub-headline {
|
|
font-size: 28px;
|
|
line-height: 40px;
|
|
margin: 2rem auto;
|
|
text-align: center;
|
|
max-width: 503px;
|
|
}
|
|
|
|
p.cta-button {
|
|
display: block;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
}
|
|
}
|