/* Countdown container */
.countdown-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #f2f2f2;
}

/* Countdown timer */
.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-size: 120px;
}

/* Countdown item */
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 20px;
}

/* Countdown label */
.countdown-label {
  font-size: 60px;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}
