@media (prefers-color-scheme: dark) {:root {color-scheme: dark;}} :root {color-scheme: dark;}

body {
    background-color: black;
    font-family: "Courier New";
    color: white;
    padding-top: 2vh;
    }

    a {
        color: white;
    }
    a:visited {
        color: white;
    }

    img.logo {
        image-rendering: optimizeSpeed; /* stop smoothing */
        image-rendering: -moz-crisp-edges; /* Firefox */
        image-rendering: -o-crisp-edges; /* Opera  */
        image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
        image-rendering: pixelated; /* Chrome */
        image-rendering: optimize-contrast; /* CSS3 Proposed */
        -ms-interpolation-mode: nearest-neighbor; /* IE8+ */
    }
    
    .logomobile {
        display: none;
    }
    
    .logobox {
        width: 100%;
        margin-top: 3vh;
        margin-bottom: 2vh;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        text-decoration: none;
        display: none;
    }
    .writeup {

        font-family: "Courier New";
        width: fit-content;
        margin: auto;
        margin-top: 2vh;
    }

    .writeup h1 {
        font-weight: bold;
        font-style: italic;
        font-size: 64;
        margin: 0;
        text-align: center;
    }

    .writeup h2 {
        font-weight: normal;
        font-style: italic;
        font-size: 16;
        margin: 0;
        text-align: center;
    }

    .bottomspace {
        height: 10vh;
    }
    .desktopbuttontext:before {
        content:"<-- back to art" !important;
    }

    .mobilebuttontext {
        display: none;
    }




@media (max-width: 1000px) {
body {
    background-color: black;
    font-family: "Courier New";
    color: white;
    }
    
    a {
        color: white;
    }
    a:visited {
        color: white;
    }

    .logobox {
        margin-top: 3vh;
        margin-bottom: 1vw;
        margin-left: auto;
        margin-right: auto;
    }
    
     .logo {
    display: none;
     }
     
     .logomobile {
    display: inline;
    width: 100%;
     }

    .bottomspace {
        height: 10vh;
    }
    .desktopbuttontext {
        display: none;
    }

    .mobilebuttontext {
        display: inline !important;
    }
    .mobilebuttontext:after {
        content:"back to art" !important;

    }

    .writeup {
        width: 100%;
    }
    .writeup h1 {
        font-size: 36;
    }
    .writeup h2 {
        font-size: 3vw;
    }


}

/* 4k or ultrawide */ 
@media (min-height:1300px) { 
    .logo{
       transform: scale(2);
    }
    .logobox {
        margin-bottom: 8vh;
        margin-top: 8vh;
    }
    .writeup h1 {
        font-size: 128;
    }
    .writeup h2 {
        font-size: 32;
    }
    .writeup p {
        font-size: 40;
    }

}