/* 
    This CSS file was created by OwL for use by pointer.js, 
     witch can be found on https://seattleowl.com. 
*/

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

#pointer-ring {
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    padding: 15px;
    border: 2px solid #750c7e;
    position: fixed;
    border-radius: 100px;
    z-index: 10;
    pointer-events: none;
}

html {
    cursor: none;
}

a {
    cursor: none;
}

@media screen and (max-width: 768px){
    #pointer-dot,
    #pointer-ring{
        display: none;
    }

    html {
        cursor: pointer !important;
    }

    a {
        cursor: pointer !important;
    }
}