body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Helvetica, 'sans-serif';
  background-color: #f2f3f8;
  color: #f2f3f8;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

.splash-screen span {
  color: #f2f3f8;
  transition: none !important;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 20px;
}

.splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 10px;
  height: 100px !important;
}



.progress-bar-container {
  width: 300px;
  height: 4px;
  background-color: #ff0000; /* Couleur initiale */
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-top: 20px;
  animation: changeColor 2s linear forwards; /* Animation pour changer la couleur */
}

@keyframes changeColor {
  0% {
    background-color: #CFCFCF; /* Couleur initiale */
  }
  100% {
    background-color: #ff0000; /* Nouvelle couleur après 30 secondes */
  }
}

.progress-bar {
  width: 0;
  height: 100%;
  background-color: #CFCFCF;
  position: absolute;
  top: 0;
  left: 0;
  animation: progress 120s linear forwards;
}

.progress-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 25%,
    rgba(248, 248, 252, 0.5) 50%,
    transparent 75%
  );
  background-size: 200% 100%;
  animation: loadingStripes 10s linear infinite;
}

@keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes loadingStripes {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}