31 lines
532 B
SCSS
31 lines
532 B
SCSS
.heading {
|
|
overflow: hidden;
|
|
text-align: center;
|
|
color: $color-tertiary;
|
|
|
|
@include bp (sm) {
|
|
margin-bottom: 128px;
|
|
}
|
|
|
|
// Title
|
|
h1 {
|
|
margin-top: 56px;
|
|
line-height: 1;
|
|
color: $color-secondary;
|
|
|
|
@include bp (sm) {
|
|
margin-top: 160px;
|
|
}
|
|
}
|
|
// Text
|
|
p {
|
|
max-width: 300px;
|
|
margin: 40px auto 0;
|
|
font-weight: 200;
|
|
|
|
@include bp (sm) {
|
|
max-width: 600px;
|
|
margin-top: 72px;
|
|
}
|
|
}
|
|
} |