41 lines
609 B
CSS
41 lines
609 B
CSS
.landing {
|
|
min-height: calc(100vh - 180px);
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 5rem 0;
|
|
}
|
|
|
|
.landing__content {
|
|
max-width: 760px;
|
|
}
|
|
|
|
.landing__eyebrow {
|
|
margin: 0 0 1rem;
|
|
color: #5b6472;
|
|
font-size: 0.95rem;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.landing h1 {
|
|
margin: 0;
|
|
color: #111827;
|
|
font-size: clamp(2.75rem, 7vw, 5.5rem);
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
}
|
|
|
|
.landing__summary {
|
|
max-width: 620px;
|
|
margin: 1.5rem 0 0;
|
|
color: #374151;
|
|
font-size: 1.2rem;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.landing__actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.75rem;
|
|
margin-top: 2rem;
|
|
}
|