@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600;700;800&display=swap');

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

body {
  font-family: 'Nunito', sans-serif;
  background-color: #000000;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Center layout */
.center-layout {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 3rem;
  animation: fadeIn 1s ease-out;
}

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

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


.coming-soon-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
  padding: 0 1.5rem;
}

.coming-soon-subtitle {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #ffffff;
  letter-spacing: 0.01em;
  opacity: 0.7;
  text-align: center;
  margin-top: 2rem;
}


/* Responsive */
@media (max-width: 480px) {

  .coming-soon-title {
    font-size: 1.5rem;
  }

  .coming-soon-subtitle {
    font-size: 1.1rem;
  }

}