/* Reset / Grundstil */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #333;
  padding: 0px;
  padding-top: 50px;
  /* Account for fixed header height */
}

/* Header */
header {
  background: #222;
  color: #fff;
  padding: 0px;
  text-align: center;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

nav a:hover {
  color: #ff9800;
}

/* Main content */
main {
  max-width: 900px;
  margin: 0px auto;
  background: white;
  padding: 0px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  padding: 0px;
  font-size: 0.7rem;
  color: #666;
}