/* Disable Text Selection Globally */
body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+/Edge */
    user-select: none;         /* Standard */
}

/* Disable Image Interaction */
img {
    -webkit-user-drag: none;   /* Webkit */
    user-drag: none;           /* Standard (future) */
    pointer-events: none;      /* Disables click/hover events on images */
}

/* Allow selection on inputs/textareas so forms still work */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}