html {
  background: #fbfaf8;
  color-scheme: light;
}

.pwa-launch-screen {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: none;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #fbfaf8;
  opacity: 0;
  pointer-events: auto;
  visibility: hidden;
  transition: opacity 360ms ease, visibility 0s linear 360ms;
}

.is-pwa-launching .pwa-launch-screen {
  display: grid;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.is-pwa-launching.is-pwa-launch-ready .pwa-launch-screen {
  opacity: 0;
  visibility: hidden;
}

.pwa-launch-mark {
  position: relative;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  transform: translateY(-2vh);
}

.pwa-launch-claw {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .pwa-launch-screen {
    transition: none !important;
  }
}