/* Reset standardmäßige Browser-Stile */
* {
    margin: 0;
    padding: 0;
    box.sizing: border-box;
}

/* Globale Stile */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    line-height: 1.4;
    background-color: #EDEDED;
    color: #333;
}

.container {
    position: relative; /* Make the container positioned relative to its parent */
    left: 0px;
    padding: 0 200px;
}

/* Header-Stile */
header {
    background-color: #FFFFFF;
    color: #000000;
    padding: 20px 0;
}

header h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #FF0000;
    text-align: left;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-right: 20px;
    margin-left: 0px;
    margin-bottom: 0px;
}

header nav ul li a {
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ccf;
}

/* Hauptstil */
main {
    padding: 30px 0;
    flex: 1;
}

main h1 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #191970;
}

main h2 {
    font-size: 22px;
    margin-bottom: 11px;
    color: #191970;
}

main h3 {
    font-size: 18px;
    margin-bottom: 9px;
    color: #000000;
}

main p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 12px;
}

main ul {
    list-style-type: disc; /* Use bullet points */
    margin-left: 20px; /* Add some left margin for indentation */
}

main ul li {
    font-size: 16px;
    margin-bottom: 5px; /* Add spacing between list items */
}


/* Footer-Stile */
footer {
    background-color:  #FFFFFF;
    color: #4A4A4A;
    padding: 20px;
    margin-top: auto; /* Push footer to the bottom */
}

footer p {
    margin-top: 10px;
}

footer nav ul {
    list-style: none;
    display: flex;
    justify-content: left;
}

footer nav ul li {
    margin-right: 20px;
    margin-left: 0px;
}

footer nav ul li a {
    color: #4A4A4A;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer nav ul li:last-child {
    margin-right: 0;
}

footer nav ul li a:hover {
    color: #ccf;
}

/* Media Queries für kleinere Bildschirme */
@media only screen and (max-width: 768px) {
    .container {
         left: 0px;
         padding: 0px 30px;
    }

    header {
         padding: 5px 0;
    }

    header h1 {
         font-size: 22px;
         margin-bottom: 5px;
    }

    main {
         padding: 20px 0;
    }

    main h1 {
         font-size: 20px;
         margin-bottom: 10px;
    }

    main h2 {
         font-size: 18px;
         margin-bottom: 9px;
    }

    main h3 {
         font-size: 16px;
         margin-bottom: 8px;
    }

    main p {
         font-size: 14px;
         line-height: 1.4;
         margin-bottom: 7px;
    }

    main ul {
         margin-left: 10px; /* Add some left margin for indentation */
    }

    main ul li {
         font-size: 14px;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    footer {
         padding: 5px;
    }
}