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

29in x 38in

1976

Depiction of the family of a martyr who sacrificed himself in order that Truth prevail over falsehood.

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