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

81cm x 51.3cm

1993

Born in 1048 in Iran, Omar Khayyam - He holds the galaxies in his hand and his mind is unlimited because of his unquenchable thirst for knowledge.  He was a mathematician, scientist,  astronomer, philosopher, and of the greatest poets to have ever lived.

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