body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdfdf6;
  color: #333;
  text-align: center;
}

header {
  background-color: #e6f4d7;
  padding: 2em 1em;
  border-bottom: 4px solid #c2e07c;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em;
  border: 4px solid #c2e07c; /* matches your yellow frame */
  background-color: #f6ffe8; /* soft echo of your green tone */
  margin-bottom: 2em;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px; /* optional: soften the edges */
}

.logo {
	width: 40vw;
  max-width: 400px;
  height: auto;

}

h1 {
  font-size: 1.8em;
  font-weight: 600;
  color: #2e5d2e;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  display: flex;
  justify-content: center;
  gap: 2em;
}

nav a {
  text-decoration: none;
  color: #2e5d2e;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #6a9f3f;
}

main {
  padding: 2em;
  font-size: 1.1em;
}

footer {
  background-color: #f0f0e0;
  padding: 1em;
  font-size: 0.9em;
  color: #666;
}
```
