body {
  background: #d3ccc4;
}

.rabbit {
  width: 190px;
  height: 240px;
  margin: 2% auto;
  background: url('https://ahoua.fr/img/landing-page-rabbit.png') left center;
  animation: play 1.4s steps(10) infinite;
}
.title {
  font-family: 'Caveat', cursive;
  font-size: 2em;
  text-align: center;

}

.signature {
  text-align: center;
  margin-top: 80px;
}
img.signature {
  max-width: 250px;
}

@keyframes play {
	100% { background-position: -1900px; }
}