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

html {
    min-height: 100dvh;
}

body {
    position: relative;
    min-height: 100dvh;
    overflow: hidden;
    background-color: #222;

    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: clamp(.5rem, 2vw, 1.2rem);

    font-family: 'Roboto', system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    color: #aaa;
}

div.falling-text {
    position: absolute;
    color: #eee;
    font-weight: bold;
    font-size: 8vw;

    pointer-events: none;
    user-select: none;
}

div.text {
    position: static;
    grid-row: 1;
    justify-self: start;
    align-self: start;

    max-width: 12rem;

    color: #aaa;

    pointer-events: none;
}

h1 {
    position: static;
    grid-row: 2;
    place-self: center;
    color: #333;
    font-size: 10vw;
    margin: 0.2rem 0;
    user-select: none;
    pointer-events: none;
}

div.credit {
    position: static;
    grid-row: 3;
    justify-self: end;
    align-self: end;
    margin-top: .4rem;
}
div.credit a {
    color: #aaa;
}

@media (max-width: 420px) {
    body { padding: .6rem; }
    div.text { max-width: 12rem; }
    div.falling-text {
        font-size: 16vw;
    }
    div.credit { justify-self: center; }
}