body {
  margin: 0;
  overflow: hidden;
  background: black;
}

canvas {
  display: block;
}

/* Fullscreen overlay for UI text */
#overlay {
  position: absolute;
  bottom: 12%;
  width: 100%;
  text-align: center;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  pointer-events: none;
  z-index: 10;
}

/* Subtitle and model name (already in place) */
#overlay h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: bold;
}

#overlay p {
  font-size: 1.2rem;
  margin: 0.3rem 0 0;
  opacity: 0.9;
}

/* New: Title at the top center (e.g. Welcome to Rostalgia) */
#title {
  position: absolute;
  top: 2%;
  width: 100%;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  font-family: 'Segoe UI', sans-serif;
  pointer-events: none;
  z-index: 11;
}
