body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #222;
  margin: 0;
}

/* Header */
header {
  background-color: #d32f2f;
  color: white;
  text-align: center;
  padding: 80px 20px 20px 20px; /* mehr Abstand oben wegen festem Menü */
  a{color:black}
}

/* Feststehendes Menü */
nav {
  background-color: #b71c1c;
  text-align: center;
  padding: 10px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  margin: 0 15px;
}

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

a {
  color: #d32f2f;
}

/* Hauptbereich */
main {
  width: 800px;
  margin: 20px auto;
  background-color: white;
  padding: 20px;
}

section {
  scroll-margin-top: 70px; /* Überschriften bleiben sichtbar bei Linksprung */
  margin-bottom: 40px;
}

h1 {
  font-size: 32px;
  margin: 0;
}

h2 {
  font-size: 24px;
  color: #d32f2f;
}

p, ul {
  font-size: 16px;
}

ul li {
  margin-bottom: 8px; /* mehr Abstand für bessere Lesbarkeit */
}

img {
  width: 760px;
  height: auto;
  margin: 10px 0;
  display: block;
}

/* Footer */
footer {
  background-color: #eeeeee;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: #555;
}
button{
   background-color: #d32f2f;
      color: white;
      border: none;
      padding: 10px 20px;
      font-size: 18px;
      border-radius: 8px;
      cursor: pointer;
      margin-top: 20px;
}