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

28.5in x19.75in

1983

Light and beauty flow to her, through her, from her and within her.  She glows with the light and all have taken flight so they can be a part of the rapture she embodies.

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