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

body {
  font-family: system-ui, sans-serif;
  background: MediumSpringGreen;
  color: white;
}

/* === CUTSCENE SECTION === */

#cutscene {
  position: relative;
}

#scene {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: block;
}

/* === TITLE === */

#title {
  position: absolute;
  inset: 0;               /* top:0 left:0 right:0 bottom:0 */
  display: flex;
  align-items: center;    /* vertical center */
  justify-content: center;/* horizontal center */
  flex-direction: column;
  text-align: center;
  opacity: 0;
  pointer-events: none;
}

#title h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.1em;
}

#title p {
  opacity: 0.7;
  margin-top: 1rem;
}

/* === NORMAL CONTENT === */

#content {
  min-height: 150vh;
  padding: 10vh 10vw;
  background: MediumAquaMarine;
}

