/* ================================ SPLASH SCREEN (LOGO) ================================ */
#splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-bg);
    z-index: -1;
}

#splash img {
    width: 40vw;
    max-width: 95vw;
    height: auto;
}

@media (max-width: 900px) {
  #splash img {
    width: 85vw !important;
    max-width: 99vw !important;
    max-height: 90vh;
  }
}

@media (max-width: 600px) {
  #splash img {
    width: 80vw !important;
    max-width: 99vw !important;
    max-height: 80vh;
  }
}