

.flipping-image-container img {
  animation: flip 5s infinite; /* Adjust the duration as needed */
  transform-style: preserve-3d; /* This property ensures that child elements of the container are rendered in a 3D-space. */
}

@keyframes flip {
  0% {
    transform: rotateY(0deg); /* Initial rotation */
  }
  100% {
    transform: rotateY(360deg); /* Final rotation */
  }
}
