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

32in x 22in

1990

The messiah will come bringing love. Fulfilling the promise of everlasting justice and unity with the Divine.

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