#chargement #roue1 {
  position: absolute;
  top: calc(50% - 25vh);
  left: calc(50% - 25vh);
  height: 50vh;
}
#chargement #roue2 {
  position: absolute;
  top: calc(50% - 10vh);
  left: calc(50% - 10vh);
  height: 20vh;
}
#chargement .roue1-anim {
  animation: imageChargement 1s 2 ease-in-out;
}
#chargement .roue2-anim {
  animation: imageChargement 2s 1 ease-in-out;
}

@keyframes imageChargement {
  0% {
    transform: rotate(0) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
@media (max-width: 1000px) {
  #chargement #roue1 {
    top: calc(50% - 25vw);
    left: calc(50% - 25vw);
    height: 50vw;
  }
  #chargement #roue2 {
    top: calc(50% - 10vw);
    left: calc(50% - 10vw);
    height: 20vw;
  }
}

/*# sourceMappingURL=Chargement.css.map */
