* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

nav {
  position: fixed;
  top: 32px;
  right: 48px;
  z-index: 10;
  display: flex;
  gap: 48px;
}

nav a {
  color: #f5f0d8;
  text-decoration: none;
  font-family: system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 14px;
}

#scene {
  position: fixed;
  inset: 0;
  z-index: 5;
  display: block;
}
