.UpnDown {
  animation: MoveUpDown 5s linear infinite;
  position: relative;
  left: 0;
  bottom: 0;
}

@keyframes MoveUpDown {
  0%, 100% {
    top: -80px;
  }
  50% {
    top: 10px;
  }
}

