/* CSS */
#splash {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #3C4A3A;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease, visibility 1s ease;
  overflow: hidden;
}

#splash img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

#splash.hidden {
  opacity: 0;
  visibility: hidden;
}