body {
  background-color: #f4f8fb;
}

#splash-screen {
  position: fixed !important;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;

  background-color: #f4f8fb;
  will-change: opacity;
  /* visibility flips after the fade so Safari stops routing wheel events to the iframe */
  transition: opacity 400ms ease, visibility 0s 400ms;
}

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