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

22in x 14.5in

1981

During the start of the revolution, one by one, family and friends left the country they loved.  The birds look up in envy watching the one who takes flight:  Where are you going?

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