#bug-container {
    text-align: center;
}

.rotation {
    animation: rotation 700ms infinite linear;
    animation-delay: 5000ms;
}

@keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(1deg);
    }
    100% {
        transform: rotate(0deg);
    }
    
  }

.bug {
    height: 70px;
    z-index: 2;
    margin-bottom: 10px;
    margin-left: 20vh;
  }

 

  .bug-walking1 {
    animation: bug-walking1 420s linear forwards;
    animation-delay: 2000ms;
}



.pause1 {
    animation: bug-walking1 420s linear forwards;
    animation-delay: 2000ms;
    animation-play-state: paused;
}

#success {
  display: visible;
}