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

2000

2000

Epitomizing kindness for nature and respect for animals earns her the trust of the doe as she embraces the fawn.

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