.attraction{
    rotate: 0deg;
}

.attraction:hover{
    animation: rotation 0.5s infinite linear, colar 4s infinite linear;
    
}

@keyframes rotation {
    0% {
      transform: rotate(0deg) scale(1);
    }
    50% {
      transform: rotate(360deg) scale(2);
    }
    100%{
        transform: rotate(719deg) scale(1);
    }
}

@keyframes colar {
    from {
        filter: hue-rotate(0deg);
    }
    to {
        filter: hue-rotate(359deg);
    }
}