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

32in x 22in

1990

Even the angel has a battle with his ego in effort to control his animal nature and overcome the evil that may emanate from the inside.

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