


#arrow-down {
  position: relative;
  margin: 0 auto;
  text-align: center;

}
.fa-angle-down {
      content: '\f0a8';
      font-family: 'Font Awesome 5 Free';
      font-size: 80px;
      transition: .3s ease-in-out;
  }

.fa-angle-down:hover {
      opacity: 0.7;
      transition: .3s ease-in-out;
  }


.fa, .fas {
  color: crimson;
}

.fa-angle-down {
    animation-name: move_arrow;
    animation-duration: 1.4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
    position: relative;
}


@keyframes move_arrow{
    0%{
    top: 10px;
    }
    25%{
    top: 25px;
    }
    50%{
    top: 40px;
    }
    75%{
    top: 25px;
    }
    100%{
    top: 10px;
    }
    }