body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}
header {
    background-color: #172951;
    color: white;
    padding: 1rem;
    text-align: center;
    position: relative;
}
header .header {
            display: flex;
            align-items: center; /* Zentriert die Elemente vertikal */
            justify-content: space-between; /* Verteilung der Elemente */
            padding: 10px;
            background-color: #172951;
            color: white;
        }

header .header img {
            width: auto;
            max-width: 100px; /* Maximale Breite für größere Bildschirme */
            height: auto;
        }

header .header h1 {
            margin: 0;
            font-size: 2em;
            text-align: center;
            flex-grow: 1; /* Der Text wächst, um den Platz zwischen den Bildern zu füllen */
        }

@media screen and (max-width: 768px) {
header .header h1 {
                font-size: 1.5em; /* Kleinere Schriftgröße auf kleinen Bildschirmen */
            }

header .header img {
                max-width: 80px; /* Kleinere Bilder auf kleinen Bildschirmen */
            }
        }

header h1 {
    margin: 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    position: relative;
    margin: 0 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li:hover > .submenu {
    display: block;
}

nav ul li:hover > .submenu-mittel {
    display: block;
}

nav ul li:hover > .submenu-breit {
    display: block;
}

.submenu {
    display: none;
    position: absolute;
    background-color: #444;
    padding: 0;
    list-style-type: none;
    margin: 0;
    min-width: 150px;
	z-index: 1;
}

.submenu li {
    display: block;
    padding: 0.5rem 1rem;
}

.submenu li a {
    color: white;
    text-decoration: none;
}

.submenu li a:hover {
    background-color: #555;
}

.submenu-mittel {
    display: none;
    position: absolute;
    background-color: #444;
    padding: 0;
    list-style-type: none;
    margin: 0;
    min-width: 200px;
}

.submenu-mittel li {
    display: block;
    padding: 0.5rem 1rem;
}

.submenu-mittel li a {
    color: white;
    text-decoration: none;
}

.submenu-mittel li a:hover {
    background-color: #555;
}

.submenu-breit {
    display: none;
    position: absolute;
    background-color: #444;
    padding: 0;
    list-style-type: none;
    margin: 0;
    min-width: 250px;
}

.submenu-breit li {
    display: block;
    padding: 0.5rem 1rem;
}

.submenu-breit li a {
    color: white;
    text-decoration: none;
}

.submenu-breit li a:hover {
    background-color: #555;
}

li.open > .submenu {
    display: block; /* Anzeigen, wenn die Klasse 'open' aktiv ist */
}

main {
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
}

.team-info {
    display: none;
}

.gallery {
    display: flex;
    gap: 1rem;
}

.gallery img {
    width: 150px;
    height: 150px;
}

#scores {
    margin-bottom: 1rem;
}

#new-score {
    margin-right: 1rem;
    padding: 0.5rem;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px;
  z-index: 1000;
}

.cookie-container {
  max-width: 800px;
  margin: 0 auto;
}

button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 10px;
  cursor: pointer;
}

button#reject-cookies {
  background-color: #f44336;
}

/* Beispiel-CSS für die Seite und den Footer */
body {
 min-height: 200vh; /* Seite höher machen, um scrollen zu können */
 margin: 0;
 font-family: Arial, sans-serif;
}
.footer {
 display: none; /* Footer standardmäßig ausblenden */
 padding: 20px;
 background-color: #781214;
 color: white;
 text-align: center;
 position: fixed;
 bottom: 0;
 width: 100%;
}

/* Container für das Seitenverhältnis */
.responsive-iframe-container {
 position: relative;
 width: 100%;
 padding-top: 56.25%; /* 16:9 Seitenverhältnis */
}

/* Eingebettetes iFrame */
.responsive-iframe-container iframe {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 400%;
 border: none;
}

