.circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    margin-left: 50%;
    left: -200px;
    top: 20vh;
}

body:hover .circle {
    transform: rotate(100000000deg);
    transition: all 100000ms;
}