html {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
    color: #000;
    overflow-x: hidden;
}

body {
    margin: 0;
    height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
    box-sizing: border-box;
    overflow-x: hidden;
}

main {
    text-align: center;
    width: min(95vw, 1100px);
    min-width: 0;
}

h1 {
    font-family: "Alfa Slab One", Rockwell, serif;
    font-size: clamp(150px, 28vw, 320px);
    line-height: 0.72;
    margin: 0 0 28px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.tagline {
    font-family: Arial Black, Helvetica, Arial, sans-serif;
    font-size: clamp(34px, 4.8vw, 68px);
    line-height: 0.9;
    margin: 0 auto;
    font-weight: 900;
    max-width: 760px;
    letter-spacing: -0.05em;
}

nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

a {
    color: #000;
    text-decoration: none;
    border: 4px solid #000;
    padding: 12px 18px;
    font-family: Arial Black, Helvetica, Arial, sans-serif;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    box-shadow: 6px 6px 0 #000;
    box-sizing: border-box;

    transition:
        transform 80ms steps(2),
        box-shadow 80ms steps(2),
        background-color 80ms linear,
        color 80ms linear;
}

a:hover,
a:focus-visible,
a:active {
    background: #000;
    color: #f5f5f5;
    transform: translate(6px, 6px);
    box-shadow: 0 0 0 #000;
}

@media (max-width: 700px) {
    body {
        padding: 0;
    }

    main {
        width: 100vw;
        max-width: 100vw;
        min-width: 0;
        box-sizing: border-box;
    }

    h1 {
        font-size: clamp(115px, 25vw, 170px);
        line-height: 0.72;
        letter-spacing: -0.08em;
        margin: 0 auto 24px;
        max-width: 100vw;
    }

    .tagline {
        font-size: clamp(22px, 8vw, 52px);
        max-width: 95vw;
    }

    nav {
        width: calc(100vw - 32px);
        margin-left: auto;
        margin-right: auto;
    }

    nav a {
        flex: 0 0 calc(50% - 14px);
        min-width: 0;
        text-align: center;
    }
}