@keyframes scaleAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}

img.praxisbox-animated {
    display: block;
    animation: scaleAnimation 3s infinite ease-in-out;
}