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

body {
    background: transparent;
    height: 200vh;
    color: white;
    font: 1.3rem Inconsolata, monospace;
    text-shadow: 0 0 5px #C8C8C8;
}

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;
}

.pub-name {
    font-size: 1.6rem;
}

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

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

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

.middle-box {
    position: absolute;
    left: 20%;
    top: 220px;
    text-align: right;
    margin-right: 5%;
    width: 55%;
}

.quoteText {
    font-family: 'Space Mono', monospace;
    font-style: italic;
    color: #d7ffd7;
    opacity: 0.92;
    letter-spacing: 0.4px;
    margin-left: 32px;
}

@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;
        margin: 5px 15px 30px;
        text-align: left;
        padding: 0;
    }
}


