@layer reset {
    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        color-scheme: light dark;
        -webkit-font-smoothing: antialiased;
        -webkit-text-size-adjust: none;
        text-size-adjust: none;
        hanging-punctuation: first allow-end last;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        text-wrap: balance;
    }

    p {
        text-wrap: pretty;
    }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
    background: #fff;
    color: #000;
    font-family: 'IBM Plex Mono', monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;

}

.container {
    display: grid;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.num {
    font-weight: 700;
    font-size: 1.25rem;
}

.note {
    padding-top: 1rem;
}

.reference {
    padding-top: 2rem;
    font-size: 0.75rem;
}
