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

20in x 31in

2019

Where do we find the meaning of life? Can it be found in books?  Do the wise know?  Do the stars carry the truth?  

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