/* Frogetta Stylesheet */
body {
  background-color: #e0ffe0;
  color: #005500;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #005500;
}

a {
  color: #008800;
  text-decoration: none;
}

a:hover {
  color: #00bb00;
  text-decoration: underline;
}

button {
  background-color: #007700;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  font-family: 'Comic Sans MS', cursive, sans-serif;
}

button:hover {
  background-color: #005500;
}

.froge-bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}