/* unifont-latin-400-normal */
@font-face {
    font-family: "Unifont";
    font-style: normal;
    font-display: swap;
    font-weight: 400;
    src:
        url(https://cdn.jsdelivr.net/fontsource/fonts/unifont@latest/latin-400-normal.woff2)
            format("woff2"),
        url(https://cdn.jsdelivr.net/fontsource/fonts/unifont@latest/latin-400-normal.woff)
            format("woff");
}

* {
    font-family: "Unifont";
    margin: 0;
    padding: 0;
    color: #e0e0e0;
}

body {
    background: #121212;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

h1 {
    font-size: 25px;
}

p {
    font-size: 15px;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 25px;
    text-decoration: underline;
}

.links p {
    display: inline-block;
}

.links a:hover {
    font-style: italic;
}

#post {
    display: none;
}

#pre {
    display: block;
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 30px;
    }

    p {
        font-size: 20px;
    }

    button {
        font-size: 35px;
    }
}
