﻿

.item {
    animation: spinAround 6s linear infinite;
}
    
    
@keyframes spinAround {
    from {
        transform: rotate(0deg) translate(120px);
    }

    to {
        transform: rotate(360deg) translate(120px);
    }
}


