/* Welcome to Froge Fun Styles */
/* Catch the froge fever with these chill styles! */

body {
  background-color: #e0ffe0;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #2f4f2f;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

header {
  background-color: #5f9ea0;
  padding: 20px;
  text-align: center;
}

h1 {
  color: #1e4d2b;
  font-size: 4vw;
}

nav {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

nav a {
  text-decoration: none;
  color: #004000;
  padding: 10px 20px;
  margin: 0 10px;
  border: 2px solid #004000;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: #32cd32;
  color: #ffffff;
}

footer {
  background-color: #5f9ea0;
  color: white;
  text-align: center;
  padding: 10px 0;
}

.emoji {
  font-size: 2rem;
}

.frogepic {
  width: 50px;
  vertical-align: middle;
}

/* Froge emoji party! */
.emoji-party {
  text-align: center;
  padding: 20px;
}

.emoji-party span {
  display: inline-block;
  margin: 5px;
  font-size: 2.5rem;
  animation: bounce 2s infinite;
}

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

/* Responsive design */
@media (max-width: 768px) {
  h1 {
    font-size: 6vw;
  }

  nav {
    flex-direction: column;
  }

  nav a {
    margin: 5px 0;
  }
}