.welcome .container {
  color: #333;
  text-align: center;
  justify-content: center;
  display: flex; 
  align-items: center;  
  flex-direction: column;
}

/* Ensures the countdown is properly centered */
#countdown {
  display: flex;
  justify-content: center;
  align-items: center;
}

#countdown ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px; /* Adds space between elements */
}

#countdown li {
  font-size: 1.5em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
}

/* Adjusts the number size */
#countdown li span {
  font-size: 3.5rem;
}

.timerTitle{
  font-size: 1em !important; 
}