.load-container {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 10;
}

.load-image-container {
  margin-bottom: 50px;
}

.load {
  display: flex;
  width: 70px;
}

.lettre {
  color: #fff;
  font-size: 27px;
  font-weight: bold;
  letter-spacing: 10px;
  animation: flash 1.2s linear infinite;
}

@keyframes flash {
  0% {
    color: #df0c36;
  }

  90% {
    color: #fff;
  }

  100% {
    color: #df0c36;
  }
}

.lettre:nth-child(1) {
  animation-delay: 0.1s;
}
.lettre:nth-child(2) {
  animation-delay: 0.2s;
}
.lettre:nth-child(3) {
  animation-delay: 0.3s;
}
.lettre:nth-child(4) {
  animation-delay: 0.4s;
}
.lettre:nth-child(5) {
  animation-delay: 0.5s;
}
.lettre:nth-child(6) {
  animation-delay: 0.6s;
}
.lettre:nth-child(7) {
  animation-delay: 0.7s;
}
.lettre:nth-child(8) {
  animation-delay: 0.8s;
}
.lettre:nth-child(9) {
  animation-delay: 0.9s;
}
.lettre:nth-child(10) {
  animation-delay: 1s;
}

.fade-out {
  transition: opacity 0.4s ease-out;
  display: none;
}
