.java{
 position: relative;
 top: 50px; left: 50px;
 width:100px;
 height:100px;
 background-image: url(https://ratnotes.files.wordpress.com/2013/01/animal-2a.png);
 animation: play 2s steps(4) infinite;
 }
@keyframes play { 
   0% { background-position: 0px 0; } 
   100% { background-position: -384px 0; }
   }
h1{
	text-align:center;
}