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

40in x 60in

1976

God created Adam from clay and earth. Then his soul was bestowed upon the body and God taught Adam hidden knowledge that other creatures did not know. God commanded all the angels to bow down to Adam. However, Satan rejected God's command and claimed to be superior  due to his nature being fiery rather than clay.  

In some sense, when someone degrades others and is boastful, they are following Satan's path. M.F.

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