*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.box{
    width: 150px;
    height: 150px;
    border-radius: 40%;
    background-color: rgb(98, 98, 200);
    cursor: pointer;
    animation: animate 1.8s linear infinite;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
