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

body {
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.scene {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  text-align: center;
}

.wordmark {
  position: relative;
  z-index: 2;
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
  font-size: 56px;
  letter-spacing: 0.38em;
  color: #c8c0b4;
  text-transform: lowercase;
  animation: fadeIn 2.4s ease forwards;
  opacity: 0;
}

.subtext {
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.45em;
  color: rgba(200, 192, 180, 0.6);
  text-transform: lowercase;
  animation: fadeIn 3.2s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  0%   { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Tablet */
@media (max-width: 768px) {
  .wordmark {
    font-size: 42px;
    letter-spacing: 0.3em;
  }

  .subtext {
    font-size: 13px;
    letter-spacing: 0.38em;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .wordmark {
    font-size: 32px;
    letter-spacing: 0.25em;
  }

  .subtext {
    font-size: 11px;
    letter-spacing: 0.32em;
  }

  .scene {
    gap: 14px;
  }
}
