html,
body {
    min-height: max(100%, 100vh);
    font-family: 'JetBrains Mono', 'Ubuntu Mono', 'Consolas', 'SF Mono', monospace;
}

* {
    box-sizing: border-box;
}

body {
    color: black;
    background: white;

    max-width: 100vw;
    overflow-x: hidden;

    font-size: 1.05rem;
}

@media screen and (min-width: 900px) {
    body {
        font-size: 1.1rem;
    }
}

h1 {
    font-weight: 900;
}

h1, h2, h3, h4, h5, h6, p {
    width: fit-content;
}

.none {
    display: none;
}

a:hover {
    opacity: 0.7;
}

blockquote {
    color: #4a4a4a;
}

table {
    border-collapse: collapse;
}

td, th {
    vertical-align: top;
    text-align: start;
}

:target {
    background-color: rgb(255, 255, 108) !important;
}

ul li, ol li {
    margin-top: 0.15em;
    margin-bottom: 0.15em;
}

pre {
    font-size: 0.9em;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes glitch {
    0% {
        text-shadow:
            2px 0 #ff00c8,
            -2px 0 #00fff9;
    }

    25% {
        text-shadow:
            -2px 0 #ff00c8,
            2px 0 #00fff9;
    }

    50% {
        text-shadow:
            2px 0 #00fff9,
            -2px 0 #ff00c8;
    }

    75% {
        text-shadow:
            -1px 0 #00fff9,
            1px 0 #ff00c8;
    }

    100% {
        text-shadow:
            2px 0 #ff00c8,
            -2px 0 #00fff9;
    }
}
body {
    max-width: 900px;
    margin: 0 auto;
    padding: 16px;
}

body > h1,
body > pre,
body > table,
body > address {
    margin-left: auto;
    margin-right: auto;
}

body > h1,
body > address {
    text-align: center;
}

body > pre,
body > table {
    max-width: 100%;
}

body > pre {
    width: fit-content;
    overflow-x: auto;
}
