

footer img {
    animation-name:  pulse;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes  pulse {
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.05);
    }
}