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

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #4ACBE1;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.logo-img {
  max-width: 400px;
  width: 90vw;
  height: auto;
  display: block;
}

.tagline {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #333;
}

.coming-soon {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #2a2a2a;
}

@media (min-width: 640px) {
  .container {
    gap: 2.5rem;
  }

  .logo-img {
    max-width: 500px;
  }

  .tagline {
    font-size: 1rem;
    letter-spacing: 0.3em;
  }

  .coming-soon {
    font-size: 1.125rem;
    letter-spacing: 0.4em;
  }
}
