* {
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    color: var(--white);
    background: var(--black);
    font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.site-main {
    display: grid;
    min-height: 100svh;
    place-items: center;
    padding: 32px;
}

.site-lockup {
    width: min(100%, 720px);
    text-align: center;
}

h1,
p {
    margin: 0;
}

h1 {
    font-size: 64px;
    line-height: 0.95;
    letter-spacing: 0;
}

p {
    margin-top: 24px;
    font-size: 20px;
    line-height: 1.4;
}

a {
    display: inline-block;
    margin-top: 44px;
    color: var(--white);
    font-size: 16px;
    line-height: 1.4;
    text-decoration: underline;
    text-underline-offset: 5px;
}

a:hover,
a:focus-visible {
    text-decoration-thickness: 2px;
}

@media (min-width: 760px) {
    h1 {
        font-size: 112px;
    }

    p {
        font-size: 24px;
    }
}

@media (max-width: 520px) {
    .site-main {
        padding: 24px;
    }

    h1 {
        font-size: 52px;
    }
}
