@keyframes drop-down {
  0% {
    bottom: 0;
    visibility: visible;
  }
  100% {
    bottom: -50vh;
    visibility: hidden;
  }
}