/* Stylesheet for the hummingbird theme on froge.ai */
body {
  background-color: #f0f5f9;
  font-family: 'Roboto', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background-color: #4CAF50;
  color: white;
  text-align: center;
  padding: 1em 0;
  box-shadow: 0 4px 2px -2px gray;
}

h1 {
  font-size: 2.5em;
  margin: 0.5em 0;
}

nav {
  display: flex;
  justify-content: center;
  background-color: #33673B;
}

nav a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
  font-size: 1em;
}

nav a:hover {
  background-color: #2C5337;
}

main {
  padding: 1em;
  line-height: 1.6;
}

footer {
  background-color: #4CAF50;
  color: white;
  text-align: center;
  padding: 1em 0;
  position: fixed;
  bottom: 0;
  width: 100%;
}

button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin: 10px 0;
}

button:hover {
  background-color: #45a049;
}