* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background: #111;
    color: #fff;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

h1 {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
