html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

#splash {
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.splash-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
