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

/* BASE */
html, body {
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* HOLDING PAGE */
.holding {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.08em;
}

.holding h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
}

.holding p {
  margin-top: 1rem;
  font-size: 0.75rem;
  opacity: 0.7;
}
