@media (min-width: 1024px) {
  :root {
    font-size: 90%;
  }
}

#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: oklch(0.97 0.02 227.3); /* azure-50 color */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#splash-screen.splash-hidden {
  opacity: 0;
  pointer-events: none;
}

.splash-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-radius: 1rem;
  width: 100%;
  height: 100%;
}

.splash-logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 5rem;
}

.splash-logo {
  position: relative;
  z-index: 10;
  height: 6rem;
  width: auto;
}
