#splash {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.5s ease-in-out;
}

#splash.hide {
  opacity: 0;
  pointer-events: none;
}

#splash-logo {
  height: 50vh;
  width: auto;
}

#loader {
  width: 30vh;
  margin-top: -10vh;
}

@media screen and (max-width: 768px) {
  #splash-logo {
    height: auto;
    width: 60vw;
  }
  #loader {
    width: 20vh;
    margin-top: -5vh;
  }
}
