html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #071b27;
}

#panorama {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#panorama canvas {
  display: block;
  width: 100%;
  height: 100%;
}

#loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: white;
  font: 500 16px/1.4 system-ui, sans-serif;
  background: #071b27;
  transition: opacity 400ms ease;
}

#loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  #panorama {
    --reduce-motion: 1;
  }
}
