/* Globale Stile */
body {
    background-color: #ffffff;
    color: #2C3038;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header-Stile für Logo und Überschrift */
header {
    text-align: center;
    padding: 20px;
}

header img {
    max-width: 100%; /* Die Breite wird auf 100% der verfügbaren Breite beschränkt */
    height: auto;
}

h1 {
    margin-top: 100px;
}

/* Hauptinhalt-Stile für den Paragraph */
main {
    text-align: center;
}

section {
    margin: 20px;
}

/* Footer-Stile (kann später noch erweitert werden) */
footer {
    text-align: center;
    padding: 10px;
    background-color: #2C3038;
    color: #ffffff;
}

/* Media Query für kleinere Bildschirme */
@media screen and (max-width: 600px) {
    header img {
        max-width: 100%; /* Hier wird die Breite auf 100% auch für kleinere Bildschirme beschränkt */
    }
}

/* Hier kannst du weitere globale CSS-Stile hinzufügen */


/* Stile für das Menü in menu.html */
nav {
    background-color: #2C3038;
    color: #ffffff;
    padding: 10px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

li {
    display: inline;
}

a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}

/* Media Query für kleinere Bildschirme */
@media screen and (max-width: 600px) {
    ul {
        flex-direction: column;
        align-items: center;
    }
}


/* Stile für den Footer in footer.html */
footer {
    background-color: #2C3038;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Media Query für kleinere Bildschirme */
@media screen and (max-width: 600px) {
    footer {
        position: static;
    }
}

