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

1968

I saw a potter's shop one dusk of day, Two thousand voiced but silent pots of clay;

One vessel then on sudden cried aloud: "Where are they - potter, seller, buyer - pray?" (Khayam)

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