/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: monospace;
  background-color: #bfc7a3; /* helles, ausgewaschenes Olivgrün */
  color: #1a1a1a;
  line-height: 1.6;
}

/* Layout */
.container {
  max-width: 700px;
  margin: 60px auto;
  padding: 20px;
  /* kein Hintergrund mehr → verschmilzt mit Seite */
}

/* Header */
header h1 {
  font-size: 2rem;
  font-weight: normal;
}

.subtitle {
  color: #4f5a3a;
  font-size: 0.9rem;
}

/* Navigation */
nav {
  margin: 30px 0;
}

nav a {
  margin-right: 10px;
  padding: 5px 10px;
  text-decoration: none;
  color: #2f3a1f;

  border: 1px solid #7a8655; /* etwas dunkleres, aber softes Oliv */
  border-radius: 8px;

  background-color: transparent;
  transition: all 0.2s ease;
}

nav a:hover {
  background-color: #7a8655;
  color: #fff;
}

/* Sections */
section {
  margin-bottom: 40px;
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: normal;
}

/* Lists */
ul {
  padding-left: 20px;
}

/* Links */
a {
  color: #2f3a1f;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  margin-top: 50px;
  font-size: 0.8rem;
  color: #4f5a3a;
}