/* Main CSS Stylesheet for froge.ai */
body {
  background-color: #f0f8ff;
  font-family: 'Lucida Grande', Tahoma, sans-serif;
  color: #383838;
  line-height: 1.6;
}

header, footer {
  background-color: #e0ffe0;
  text-align: center;
  padding: 1rem;
}

a {
  color: #40826D;
  text-decoration: none;
}

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

button, input[type="submit"] {
  background-color: #67a58c;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover, input[type="submit"]:hover {
  background-color: #4e716c;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.card {
  background: white;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

h1, h2, h3 {
  color: #2e8b57;
}

nav {
  margin-bottom: 2rem;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-around;
}

nav li {
  display: inline;
}

nav a {
  font-weight: bold;
}