43 lines
645 B
CSS
43 lines
645 B
CSS
/*
|
|
* About Section Styles
|
|
*/
|
|
|
|
.about {
|
|
padding: 8rem 0;
|
|
}
|
|
|
|
.about-inner {
|
|
max-width: 680px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.about-eyebrow {
|
|
font-size: 0.75rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
color: var(--accent);
|
|
margin-bottom: 1rem;
|
|
display: block;
|
|
}
|
|
|
|
.about h2 {
|
|
font-size: 2.5rem;
|
|
font-weight: 800;
|
|
letter-spacing: -1px;
|
|
margin-bottom: 1.75rem;
|
|
color: var(--text);
|
|
}
|
|
|
|
.about p {
|
|
color: var(--text-muted);
|
|
font-size: 1.05rem;
|
|
line-height: 1.85;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.about p:last-child {
|
|
margin-bottom: 0;
|
|
}
|