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

body {
    font-family: "Berkeley Mono", monospace;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #faf9f6;
    color: #2c2c2c;
}

main {
    text-align: center;
}

h1 {
    font-size: clamp(4rem, 20vw, 12rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #2c2c2c;
}
