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

22.25in x 14.75in

1983

She becomes the beauty she embraces and she is unified with nature that she admires.

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