* {
    margin: 0;
    padding: 0;
}
.cursor {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    pointer-events: none;
    /* opacity: 0.8; */
    transform: translate(-50%, -50%);
    transition: left 0.15s ease-out, top 0.15s ease-out;
    z-index: 1000;
}
body{
    overflow-x: hidden;
}
@media(max-width:1024px){
    #cursor-container{
        display: none;
    }
}