html {
    font-size: 1.5vw;
}

@media (orientation: portrait) {
    html {
        font-size: 3vw;

        /* Font size based on the height of the viewport */
    }
}

pre {
    font-family: comicmono;
}

body {
    font-family: comicmono;
    line-height: 1;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 10vh;
    background-color: black;
    color: white;
    text-align: center;
}

pre {
    text-align: left;
    display: inline-block;
    padding: 1rem;
    background-color: black;
    color: white;
    user-select: none;
}

pre a:link,
pre a:visited {
    color: white !important;

    /* White text for all link states */
    font-weight: bold;

    /* Bold text */
    text-decoration: none;

    /* No underline by default */
}

pre a:hover {
    text-decoration: underline;

    /* Underline on hover */
}