/* Styles for the body element */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #fff;
}

/* Styles for the progress bar container */
.progress-container {
  width: 300px;
  height: 8px;
  background-color: #24242733;
  border-radius: 10px;
  overflow: hidden;
  transition: opacity .5s ease-out;
}

/* Styles for the progress bar */
.progress-bar {
  display: block;
  height: 100%;
  background-color: #000;
  width: 0;
  transition: width .5s ease;
}

@media (prefers-color-scheme: dark) {
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #000;
  }
  
  .progress-container {
    width: 300px;
    height: 8px;
    background-color: #ffffff33;
    border-radius: 10px;
    overflow: hidden;
    transition: opacity .5s ease-out;
  }
  
  .progress-bar {
    display: block;
    height: 100%;
    background-color: #fff;
    width: 0;
    transition: width .5s ease;
  }
} 


/* CSS for a fade-in animation */
.fade-in {
  opacity: 0;
  animation: fadeIn .5s ease-in-out forwards;
}

/* Keyframes for the fadeIn animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}