html {
    background-color: black;
    background-image:
            radial-gradient(
                rgba(0, 150, 0, 0.75), black 120%
            );
    background-attachment: fixed;
}

body {
    background: transparent;
    height: 500vh;
    color: white;
    font: 1.3rem 'IBM Plex Mono', monospace;
    text-shadow: 0 0 5px #C8C8C8;
}

.emdash {
    font-family: Georgia, serif;
    padding: 0 0.03em;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: repeating-linear-gradient(
            0deg,
            rgba(26,198,204,0.15),
            rgba(26,198,204,0.15) 1px,
            transparent 1px,
            transparent 2px
    );
    pointer-events: none;
}

::selection {
    background: #0080FF;
    text-shadow: none;
}

a {
    color: white;
}

h1, h2 {
    font-weight: normal;
}

pre {
    white-space: pre-wrap;
    background: rgba(0, 255, 0, 0.07);
    border-left: 2px solid rgba(0, 255, 0, 0.4);
    padding: 10px 15px;
    margin: 10px 0;
    font-size: 0.95em;
}

.back-arrow {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 3.5rem;
    text-decoration: none;
}

.back-arrow-bottom {
    display: none;
    font-size: 2.5rem;
    text-decoration: none;
    margin-top: 30px;
}

.top-text {
    margin-top: 50px;
}

.left-text {
    font-size: 0.75rem;
    line-height: 0.5;
    text-align: right;
    padding-right: 30px;
}

.middle-box {
    position: absolute;
    left: 30%;
    top: 300px;
    text-align: left;
    margin-right: 10%;
    width: 50%;
}

.quoteText {
    font-family: 'Space Mono', monospace;
    font-style: italic;
    opacity: 0.85;
    letter-spacing: 0.3px;
    margin: 0.2em 0;
}

.quoteLeft {
    padding-left: 28px;
}

.quoteRight {
    padding-left: 90px;
}

@media (max-width: 600px) {
    body {
        font-size: 1.1rem;
        height: auto;
        min-height: 100vh;
    }

    .left-text {
        display: none;
    }

    .back-arrow {
        position: static;
        display: block;
        padding: 15px 15px 5px;
        font-size: 2.5rem;
    }

    .middle-box {
        position: static;
        width: auto;
        left: auto;
        top: auto;
        margin: 5px 15px 30px;
    }

    .back-arrow-bottom {
        display: block;
    }
}


