.preloader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffcc80;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

.loader-icon {
  width: 10em;
  height: 10em;
  background-size: cover;
  animation: rotate 1.4s linear infinite;
}

#texte-propulsePar {
  font-family: 'Pacifico';
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#bloc-carte {
  position: relative;
}

.finger-container {
  position: absolute;
  bottom: -8em;
  left: 70%;
  font-size: 24px;
}

.finger {
  width: 60px;
  height: 200px;
  background-color: transparent;
  background-image: url('./images/clickSansEffet.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.clickSansEffet {
  opacity: 0;
}

.clickAvecEffet {
  display: none;
  background-image: url('./images/clickAvecEffet.webp');
}