@media only screen and (min-width: 576px) {  
    .info {
        width: 45vw;
    }
}

@media only screen and (min-width: 768px) {  
    .info {
        width: 40vw;
    }
}

@media only screen and (min-width: 992px) {  
    .info {
        width: 30vw;
    }
}

@media only screen and (min-width: 1200px) { 
    .info {
        width: 25vw;
    }
}

@media only screen and (min-width: 2400px) { 
    .info {
        width: 15vw;
    }
}

::-webkit-scrollbar {
    height: 18px;
    width: 18px;
  }
  
::-webkit-scrollbar-track {
    background-color: transparent;
  }
  
::-webkit-scrollbar-thumb {
    background-color: #aaaaaa;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
  }
  
::-webkit-scrollbar-thumb:hover {
    background-color: #777777;
  }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', 'Open Sans', 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: white;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
    background-color: #000000;
    cursor: default;
    background-size: 0%;
    overscroll-behavior-y: contain; /* To prevent pull to refresh on Android Chrome */
}

html#legacyMac body {
    font-family: 'Helvetica', 'Roboto', 'Open Sans', 'Segoe UI', 'Helvetica Neue', sans-serif;
}

a {
    color: white;
}

/* Thank you Vincent!! https://stackoverflow.com/a/33057806 */
body:before {
    content: "";
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background-image: inherit;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}

.center {
    margin: auto;
    padding: 5px;
    text-align: center;
}

.footer, .footer a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    padding-bottom: 15px;
}

.info {
    margin: auto;
}

.bottomleft {
    position: fixed;
    bottom: 10px;
    left: 8px;
    font-size: 150%;
}

.bottomright {
    position: fixed;
    bottom: 8px;
    right: 8px;
    font-size: 200%;
}