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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #ffffff;
  color: #111111;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
  gap: 1.5rem;
}

.coming-soon__logo {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

.coming-soon__tagline {
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
  color: #111111;
}

@media (max-width: 480px) {
  .coming-soon__logo {
    max-width: 90vw;
  }

  .coming-soon__tagline {
    font-size: 1rem;
  }
}
