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

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

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

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

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  opacity: 1;
  transition: opacity 0.5s ease-out;
  width: 100%;
}

.loader-container.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-container img {
  max-width: 250px;
  height: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.loader-container span {
  color: white;
  font-family: Arial, sans-serif;
  margin-top: 12px;
  font-size: x-large;
}

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