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

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000; /* Will transition to the average color of the image */
  transition: background-color 300ms ease;
  overscroll-behavior: contain;
}

#loading {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  font-family: -apple-system, system-ui, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 24px;
  letter-spacing: 0.2px;
  z-index: 2;
}

#slide {
  width: 100vw;
  height: 100vh;
  object-fit: contain; /* scale to fit w/o cropping */
  object-position: center center;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
