.image__rotate img {
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-name: slow-rotate;
}

@keyframes slow-rotate {
    0%, 100% {
        transform: rotate(8deg);
        scale: 98%;
    }
    
    50% {
        transform: rotate(12deg);
        scale: 102%;
    }
}
