html, body {
    margin: 0;
    padding: 0;
    font-family: monospace;
}

body {
    display: flex;
    height: 100dvh;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    h1, p {
        margin-bottom: 0;
        font-size: 2vw;
        @media screen and (max-width: 768px) {
            font-size: 5vw;
        }
    }
    .links a {
        margin-bottom: 4px;
        font-size: 1.5vw;
        @media screen and (max-width: 768px) {
            font-size: 4vw;
        }
    }
}