* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f3f4f6;
  color: #333;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-soon-container {
  text-align: center;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 2.5rem;
  color: #333;
}

p {
  margin: 10px 0 30px;
  font-size: 1.2rem;
  color: #555;
}

.countdown {
  display: flex;
  justify-content: space-around;
  font-size: 1.5rem;
}

.countdown div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown span {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
}

@media(max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  .countdown {
    flex-direction: column;
  }

  .countdown div {
    margin-bottom: 10px;
  }
}


.text-cyan-300 {
    color: #22d3ee; /* Tailwind cyan-300 */
}