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

49.5cm x 35.5cm

1981

The Phoenix is a benevolent compassionate mythical bird who resurrects through his own self created fire, burning to ashes and rising again.  The bird joins male and female nature together and breaks all limitations.

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