/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background-color: #1d1d1f; /* space grey */
  color: white;
}

/* Centering */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 1rem;
  animation: fadeIn 2s ease-in-out;
}

/* Logo scaling */
.logo {
  width: 200px;
  max-width: 80%;
  height: auto;
  margin-bottom: 1.5rem;
}

/* Typography */
.tagline {
  font-size: 1.4rem;
  font-weight: 300;
  margin: 0.25rem 0;
}

.coming-soon {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Responsive tweaks */
@media (max-width: 480px) {
  .logo {
    width: 160px;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .coming-soon {
    font-size: 1.1rem;
    margin-top: 1.75rem;
  }
}