File size: 739 Bytes
ffc05fe 2cc62ca | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | .header {
text-align: center;
padding: 3rem 2rem 1.5rem;
}
.logo {
display: inline-flex;
align-items: baseline;
gap: 0.4rem;
}
.logoIcon {
font-size: 2.2rem;
color: var(--mauve-400);
line-height: 1;
}
.logoText {
font-family: var(--font-display);
font-size: 3.2rem;
font-weight: 300;
color: var(--ink);
letter-spacing: -0.02em;
line-height: 1;
}
.tagline {
font-family: var(--font-body);
font-size: 0.85rem;
font-weight: 300;
color: var(--mauve-400);
letter-spacing: 0.12em;
text-transform: uppercase;
margin-top: 0.5rem;
}
.divider {
width: 40px;
height: 1px;
background: var(--mauve-200);
margin: 1.5rem auto 0;
}
.logoImg {
height: 100px;
width: auto;
object-fit: contain;
} |