:root {
  --black: #0b0b0b;
  --cream: #f2ede3;
  --yellow: #f7c21e;
  --red: #c1382c;
  --teal: #00c4a4;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--cream);
  color: var(--black);
}

.soon {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: 3rem 1.5rem;
  text-align: center;
}

.soon__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  animation: content-arrive 1.4s ease-out both,
    content-float 7s ease-in-out 1.4s infinite;
}

.soon__logo {
  width: min(68vw, 36rem);
  height: auto;
  fill: currentColor;
}

h1 {
  margin: 0;
  color: var(--red);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.6rem, 4vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.9;
  text-transform: uppercase;
}

@keyframes content-arrive {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes content-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 40rem) {
  .soon {
    gap: 2rem;
  }

  .soon__logo {
    width: min(72vw, 28rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .soon__content {
    animation: none;
  }
}
