html, body {
  margin: 0;
  height: 100%;
  background: #ffffff;
}

#web-splash {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  z-index: 9999;
  transition: opacity 220ms ease;
}

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

#web-splash-logo {
  width: min(14vw, 100px);
  height: min(14vw, 100px);
  min-width: 64px;
  min-height: 64px;
}
