/* Disable text selection & dragging */
body {
	-webkit-user-select: none; /* Chrome, Safari */
	-moz-user-select: none;    /* Firefox */
	-ms-user-select: none;     /* IE10+ */
	user-select: none;         /* Standard */
}

img {
    pointer-events: none;
}