/* ANIMACIONES */

 #ImagenesAnimacion{
    animation-duration: 5s;
 }

 .ani{
 
     
      border-radius: 10px;
      animation: agrandarEncojer 2s infinite ease-in-out;
      position: relative;
    left: 10px;
 }

  @keyframes agrandarEncojer {
      0%, 100% {
        transform: scale(1.2);
      }
      50% {
        transform: scale(1.1);
      }
    }