/* Allgemeine Stile */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

h1, h2, h3 {
  color: #333;
}

h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

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

a {
  color: #007bff;
}

/* Layout-Stile */
header, section, footer {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background-color: #f7f7f7;
}

footer {
  background-color: #f9f9f9;
  text-align: center;
}

/* Medienabfragen für Responsive Design */
@media screen and (max-width: 600px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

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