31 lines
424 B
SCSS
Vendored
31 lines
424 B
SCSS
Vendored
section.hero {
|
|
max-width: 60%;
|
|
margin-top: 4rem;
|
|
margin-bottom: 4rem;
|
|
|
|
@media (max-width: $lg) {
|
|
max-width: 75%;
|
|
margin-top: 2rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
@media (max-width: $md) {
|
|
max-width: 100%;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
h1 {
|
|
color: $primary;
|
|
font-size: 2.5rem;
|
|
|
|
@media (max-width: $md) {
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|
|
|
|
p {
|
|
font-size: 14px;
|
|
line-height: 2;
|
|
}
|
|
}
|