16 lines
665 B
CSS
16 lines
665 B
CSS
|
|
:root {
|
||
|
|
font-family: ui-sans-serif, system-ui, sans-serif;
|
||
|
|
color: #eaf0ff;
|
||
|
|
background: #07101f;
|
||
|
|
font-synthesis: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
body { margin: 0; min-width: 320px; min-height: 100vh; }
|
||
|
|
main { max-width: 720px; margin: 0 auto; padding: 12vh 32px; }
|
||
|
|
.eyebrow { color: #82a7ff; letter-spacing: .08em; text-transform: uppercase; }
|
||
|
|
h1 { font-size: clamp(2rem, 5vw, 4rem); line-height: 1.05; }
|
||
|
|
p { color: #b7c5e5; line-height: 1.7; }
|
||
|
|
dl { margin-top: 48px; border-top: 1px solid #263554; }
|
||
|
|
dl div { display: flex; justify-content: space-between; gap: 24px; padding: 16px 0; border-bottom: 1px solid #263554; }
|
||
|
|
dt { color: #8fa4cf; }
|
||
|
|
dd { margin: 0; text-align: right; }
|