@charset "utf-8";
/* CSS Document */

.downarrow{ width:32px;
height:32px;
margin:auto;
background-image:url(../image/down-arrow.png);
-moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-10px);
  }
}