body {
    background: var(--color-void);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    letter-spacing: 0;
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.7rem, 4.7rem, 4.7rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.25rem, 1.6rem, 1.6rem);
}

p {
    color: var(--color-muted);
}

::selection {
    background: rgba(0, 214, 255, 0.35);
    color: white;
}

