/* 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: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  transition: opacity 0.25s ease-out;
}

/* Styles for the progress bar with striped effect */
.progress-bar {
  display: block;
  height: 100%;
  width: 20%;
  background: repeating-linear-gradient(
    45deg,
    #6a6a6a,
    #6a6a6a 10px,
    #8a8a8a 10px,
    #8a8a8a 20px
  );
  background-size: 40px 100%;
  animation: stripes 1s linear infinite;
  transition: width 0.5s ease;
}

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

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

/* Keyframes for the Striped Loading Animation */
@keyframes stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 0;
  }
}
