:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background: #000;
  color: #fff;
}

.coming-soon {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 3rem 1.5rem 4rem;
}

.coming-soon__content {
  display: grid;
  justify-items: center;
  max-width: 62rem;
  text-align: center;
}

.coming-soon__animation {
  display: block;
  width: clamp(18rem, 52vw, 36rem);
  height: auto;
  margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
}

h1 {
  margin: 0;
  color: #e6a34a;
  font-family: "Nova Square", sans-serif;
  font-size: clamp(1.45rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.8rem 1rem;
  color: rgba(255, 255, 255, 0.52);
  font-family: "Nova Square", sans-serif;
  font-size: 0.625rem;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 30rem) {
  .coming-soon {
    padding-inline: 1.25rem;
  }

  h1 {
    letter-spacing: -0.02em;
  }
}
