.countdown {
    animation: countdown 5s linear forwards;
    color: white
  }
  #counter{
    color: white
  }
  #progress-bar {
    animation: progress 5s ease-in-out infinite;
  }
  
  @keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
  }
  