body {
    color: #A7ADB8;
    font-family: 'Courier New', monospace;

    backdrop-filter: blur(2px) brightness(40%);
    
    background-color: #000;
    background-image: url('../assets/lost_dark.webp');
    background-size: 50%;
    background-repeat: repeat;
    background-attachment: fixed;
    height: 100%;
    width: 100%;
    image-rendering: optimizeSpeed;             /* STOP SMOOTHING, GIVE ME SPEED  */
    image-rendering: -moz-crisp-edges;          /* Firefox                        */
    image-rendering: -o-crisp-edges;            /* Opera                          */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
    image-rendering: pixelated;                 /* Universal support since 2021   */
    image-rendering: optimize-contrast;         /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */
}

a {
  color:#C5CBD4;
}

a:visited {
  color:#C5CBD4;
}

section {
    padding-left: 15px;
    padding-top: 1px;
    padding-bottom: 1px;
}