#wave-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wave-img {
    position: relative;
    width: 32px;
    height: 32px;
    animation: grow-animation 1.5s ease-in-out infinite;
    transform-origin: center center;
    border-radius: 10px;
}

/* Definimos la animación de crecimiento progresivo */
@keyframes grow-animation {
    0% {
        transform: scale(1); /* Tamaño inicial */
    }
    50% {
        transform: scale(1.1); /* El tamaño aumenta hasta un 30% más */
    }
    100% {
        transform: scale(1); /* El tamaño vuelve al normal */
    }
}
