/* style.css – einheitliche Formatierung für alle Seiten */

body {
  font-family: Arial, Helvetica, sans-serif;
  max-width: 700px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.5;
  color: #222;
}

h1 {
  font-size: 1.8em;
  margin-bottom: 0.2em;
}

h2 {
  font-size: 1.3em;
  margin-top: 1.5em;
}

p {
  margin: 0.8em 0;
}

nav {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

nav a {
  margin-right: 12px;
  text-decoration: none;
  color: #06c;
}

nav a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  margin: 1em 0;
}
