
/* Disable Text Selection and Image Interaction */
    body {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    img {
        pointer-events: none;
    }

/* ------------------------------------------------------------- */
