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

24in x 18.25in

1992

Humans have many currents of thoughts - emanating from our dual composition which is earthly and celestial. We have animalistic tendencies and an angelic soul. It is up to each human to use free will to actively conquer the finite impulses and let divine infinite power rule our temple.

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