/* =========================
   Disable Text Selection
========================= */

body{
user-select:none;
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
}

/* Disable image dragging */

img{
pointer-events:none;
}

/* =========================
   Watermark Protection
========================= */

body::after{
content:"Protected Demo Content";
position:fixed;
top:40%;
left:15%;
font-size:60px;
color:rgba(0,0,0,0.07);
transform:rotate(-30deg);
pointer-events:none;
z-index:9999;
}

/* =========================
   Prevent Printing
========================= */

@media print{
body *{
display:none !important;
}
}