body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #000000;
  font-family: system-ui, sans-serif;
}

#loading-curtain {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading-complete #loading-curtain {
  opacity: 0;
}

.curtain-hidden #loading-curtain {
  display: none;
}

.scene {
  position: relative;
  width: min(90vw, 420px);
  display: inline-block;
}

.scene canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.scene img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  outline: 10px solid #000000;
}

.highlight {
  color: white;
  font-family: monospace;
  font-size: 16px;
  text-align: right;
  width: min(90vw, 420px);
}

.highlight a {
  color: white;
  font-weight: bold;
}
nav {
  color: white;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  font-weight: bold;

}
