#map { width: 300px; height: 300px; margin: 10px 0 10px 30px; border-radius: 20px; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(70px) translateX(-30px);}
    40% {
      transform: translateY(100px) translateX(-60px);}
    60% {transform: translateY(85px) translateX(-45px);}
}

.bounce {
  animation: bounce 2s infinite;
}
