/* Reset margins and set up the viewport canvas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: hsl(0, 0%, 5%);
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;

    /* Center the content perfectly on the screen */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;

    /* Smooth anti-aliasing for clean text rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    /* Fluid typography: scales nicely between mobile and desktop screens */
    font-size: clamp(2.5rem, 8vw, 6rem);
    letter-spacing: -0.03em;
    user-select: none;
    text-align: center;
}