/* Hiding Cursor when move out of website viewport */ body:hover .cursor { opacity: 1; } .cursor { pointer-events: none; }
Brutalized by Power

33.25in x 33.5in

1977

Some human beings do not have ears or eyes. They only have mouths - never satiated appetites gluttonously gorging. They use their power to brutalize others.  They are lost in the fruitless pleasures they enjoy!  They do not see! They cannot hear!

next work
But Why
scroll for more
gallery
// Hiding Cursor when move out of viewport $("a").mouseenter(function () { $(".cursor").click(); }); $("a").mouseleave(function () { $(".cursor").click(); });