#pointer-dot {
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border: 2.5px solid white;
    position: fixed;
    border-radius: 4px;
    z-index: 101;
    pointer-events: none;
    transition: border-color 0.5s;
    
}

#pointer-ring {
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    padding: 15px;
    border: 2px solid white;
    position: fixed;
    border-radius: 100px;
    background-color: white;
    z-index: 102;
    pointer-events: none;
    mix-blend-mode: difference;
}

html {
    cursor: none !important;
}

a {
    cursor: none !important;
}

@media screen 
and (max-device-width: 768px) 
and (max-device-height: 920px)  { 

    #pointer-dot {
        display: none;
        
    }
    
    #pointer-ring {
        display: none;
    }
}