 .animated {
  animation-name: moveup;
    -webkit-animation-name: moveup;

    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;

    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;

     animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}
.reverse {
  animation-name: movedown;
    -webkit-animation-name: movedown;

    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;

    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;

     animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

@keyframes moveup {
    0% { left:0px; top:200px;}
  100% { left:0px; top:0px; }
}

@-webkit-keyframes moveup {
      0% { left:0px; top:200px;}
    100% { left:0px; top:0px;}
}
@keyframes movedown {
    0% { left:0px; top:0px;}
  100% { left:0px; top:200px; }
}

@-webkit-keyframes movedown {
      0% { left:0px; top:0px;}
    100% { left:0px; top:200px;}
}