#app-splash {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
#app-splash.fade-out {
  opacity: 0;
}
#app-splash img {
  width: 80vw;
  max-width: 360px;
  height: auto;
  object-fit: contain;
}
