.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #222222d1;
    z-index: 300;
    position: relative;


.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content; 
  color: white;
  font-family: Arial, sans-serif;
  font-size: 5rem;
  margin: 0;
}
.countdown::before {
  content: "5";
  animation-duration: 5s;
  animation-direction: linear;
  animation-delay: 0.5s;
  animation-name: countdown;
}
}

@keyframes countdown { 
  0% {
    content: "5";
  }
  25% {
    content: "4";
  }
  50% {
    content: "3";
  }
  75% {
    content: "2";
  }
  90% {
    content: "1";
  }
  100% {
    content: "0";
  }
}
