/* ASCII mode: black background, white monospace text, 2000s vibes */

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

html {
    background: #000;
}

body {
    background: #000;
    color: #fff;
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    line-height: 1.5;
    padding: 24px 16px 64px;
}

pre {
    font: inherit;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 70ch;
}

a {
    color: #fff;
    text-decoration: underline;
}

a:hover,
a:focus {
    background: #fff;
    color: #000;
    text-decoration: none;
}

/* blinking cursor, old terminal style */
.blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

::selection {
    background: #fff;
    color: #000;
}

/* mobile devices */
@media (max-width: 600px) {
    body {
        font-size: 13px;
        line-height: 1.6;
        padding: 16px 10px 48px;
    }

    pre {
        max-width: 100%;
    }
}
