/* Globale Stile */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #17202A; /* Dunkelblauer Hintergrund */
  color: #ffffff; /* Weiße Schriftfarbe */
}

/* Container für die gesamte Webseite */
.container {
  max-width: 800px;
  margin: 0 auto;
}

/* Header-Stile */
header nav {
  width: 100%;
  height: 80px;
  background-color: #0B3B57; /* Dunkelblaue Header-Hintergrundfarbe */
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
  height: 100%;
}

header nav ul li {
  margin: 0 10px;
  position: relative;
}

header nav ul li a {
  color: #ffffff; /* Weiße Schriftfarbe im Header */
  text-decoration: none;
  display: block;
  padding: 10px 20px;
}

header nav ul li:hover {
  background-color: #ffa500; /* Orange aufleuchtende Farbe im Header */
}

/* Logo-Banner-Stile */
#logo-banner {
  width: 100%;
  height: 200px;
  background-color: #0B3B57; /* Dunkelblaue Banner-Hintergrundfarbe */
  text-align: center;
  line-height: 200px; /* Vertikal zentriert den Text im Banner */
}

/* Inhalt-Stile */
#content {
  padding: 20px;
}

#content h2 {
  color: #ffffff; /* Weiße Schriftfarbe */
}

#content p {
  color: #dddddd; /* Hellgraue Schriftfarbe im Inhalt */
}
/* Logo-Banner-Stile */
#logo-banner {
  width: 100%;
  height: 200px;
  background-color: #0B3B57;
  text-align: center;
  line-height: 200px;
  position: relative; /* Position auf relative setzen */
}

/* Suchfeld im Logo-Banner */
#logo-banner form {
  position: absolute;
  bottom: 20px; /* Abstand zum unteren Rand des Banners anpassen */
  left: 50%; /* Horizontal zentrieren */
  transform: translateX(-50%); /* Horizontal zentrieren */
}

#logo-banner input[type="text"] {
  padding: 5px;
}

#logo-banner input[type="submit"] {
  padding: 5px 10px;
  background-color: #ffa500;
  color: white;
  border: none;
  cursor: pointer;
}

/* Footer-Stile */
footer nav {
  width: 100%;
  height: 60px;
  background-color: #0B3B57; /* Dunkelblaue Footer-Hintergrundfarbe */
  text-align: center;
  line-height: 60px; /* Vertikal zentriert den Text im Footer */
}

footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer nav ul li {
  display: inline-block;
  margin: 0 10px;
}

footer nav ul li a {
  color: #dddddd; /* Hellgraue Schriftfarbe im Footer */
  text-decoration: none;
}

/* Medienabfrage für Responsive Design */
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden; /* Verhindert das Scrollen auf Handys im Hochformat */
  }
}
