body, main, h1, h2 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    display: grid;
    place-items: center;
    min-height: 100vh;
    background: #fafafa;
    color: #000;
}

main {
    text-align: center;
    padding: 3rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: #666;
    letter-spacing: clamp(1px, 0.2vw, 2px);
    text-transform: uppercase;
    line-height: 1.5;
}