body{
    margin:0;
    background:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;

}

.custom-cursor{
    position: fixed;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
}

canvas{
    display:none;
    cursor: grab;
}

#loader{
    position:absolute;
    color:white;
    font-size:24px;
}

canvas:active{
    cursor: grabbing;
}

