/* Welcome to Froge World's Style Guide CSS */
body {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background-color: #f0f8ff;
  color: #333333;
  margin: 0;
  padding: 0;
}

header {
  background-color: #98fb98;
  padding: 20px;
  text-align: center;
  font-size: 2em;
  color: #008000;
  border-bottom: 2px solid #006400;
}

a {
  color: #228b22;
  text-decoration: none;
}

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

button {
  background-color: #32cd32;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1em;
}

button:hover {
  background-color: #2e8b57;
}

footer {
  background-color: #98fb98;
  color: #006400;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.froge-image {
  width: 100px;
  height: auto;
}