html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: #111;
    color: #ccc;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    display: grid;
    box-sizing: border-box;
    place-items: center;
}

main {
    padding: 5rem;
    text-align: center;
    line-height: 1.6;
}

h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 10vw, 10rem);
    font-weight: 800;
    color: #deadbeaf;
}

p {
    margin: 0 auto 1rem;
    max-width: 60ch;
}

.small {
    font-size: 0.9rem;
    color: #888;
}

a {
    color: #fff;
    white-space: nowrap;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

footer {
    position: absolute;
    padding: 1rem;
    bottom: 0;
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 4rem;
}
