* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: black;
  overflow: hidden;
}

/* THE WORLD OUTSIDE */
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: black;
  overflow: hidden;
  color: white;
  font-family: Helvetica, sans-serif;
}

/* THE PAGE AREA */
.world {
  min-height: 100%;
  display: grid;
  place-items: center;
  background: black;
  overflow: hidden;
}

.scene-1 {
  width: 100%;
  text-align: center;
}

.loading-text {
  margin: 0;
  font-size: clamp(16px, 7vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-align: center;
  text-wrap: balance;
}
