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

24in x 17in

1991

Every person has demons inside of them that they must overcome. The sword and the bird are symbols of willpower and divine help in this struggle.

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