body {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #FAF7F2;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1C1917;
  overflow: hidden;
}

main {
  position: relative;
  z-index: 2;
}

h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 600;
  text-transform: lowercase;
  text-align: center;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

h1.visible {
  opacity: 1;
  transform: translateY(0);
}

.soon {
  font-style: italic;
  color: #9c6bff;
}

.background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  z-index: 1;
}

.logo {
  width: 60vmin;
  height: auto;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
