.countdown-list {
    display: flex;
    flex-direction: row; /* Makes items align in a row */
    justify-content: space-evenly;/*Adds space between items */
    align-items: center; /* Aligns items vertically in the center */
    list-style: none; /* Removes bullets from list */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
    text-transform: uppercase;
    flex-wrap: wrap;
  }

.countdown-list ul {
    display: flex;
    flex-direction: column;
}
  
.countdown-list li span {
    display: block;
    font-size: clamp(4rem, 5vw, 6rem);
    font-weight: 800;
  }


/* Responsive styles for smaller screens */
@media (max-width: 600px) {
    .countdown-list {
      flex-direction: column; /* Stacks items vertically */
    }
  
    .countdown-list li {
      margin: 5px 0; /* Adds vertical spacing between items */
    }
  }