/* baballe */

#ball {
    display: none;
}

@media screen and (min-width: 500px) {
    #ball {
        display: block;
        width: 20rem;
        height: 20rem;
        position: absolute;
        border-radius: 50%;
    }
}


.baballe {
    width: 20rem;
    position: absolute;
    top: 70vh;
    left: 70vw;
}



.baballe:hover {
    img {
        animation-play-state: paused;
        filter: grayscale(100%);
    }
}

.baballe img {
    filter: none;
    max-width: 100%;
    animation-name: spin;
    animation-duration: 5000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}