img.scale-alpha-animation {
  /* Set the initial scale and opacity */
  /* Apply the animation */
  animation: scaleAlpha 3s infinite;
}

/* Define the keyframes for the animation */
@keyframes scaleAlpha {
  0% {
  }
  100% {
    transform: rotate(-90deg); /* Increase the scale */
  }
}
