* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #0a0a0a;
    --fg: #fafafa;
}

html, body { height: 100%; }

body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#answer {
    font-size: clamp(7rem, 35vw, 28rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.05em;
    text-align: center;
    user-select: none;
}
