The fadein animations works but after the 2second delay, and 2second animation it just disappears. Also sometimes when I refresh the website the animation no longer works.
#frontPicture {
-moz-animation: fadein 2s 2s fade;
animation: fadein 2s 2s fade;
}
@keyframes fadein {
0%{opacity:0;}
100% { opacity:1;}
}