/* Allgemeines Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header-Styling */
header {
    background-color: #0770bb;
    color: white;
    padding: 20px 0;
}

/* Header pseudo-element for the blue layer */
header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333; /* Blue layer color */
    z-index: -1; /* Place it behind the content */
}

/* Footer pseudo-element for the blue layer */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px; /* Adjust the height as needed to control the blue layer's size */
    background-color: #919090; /* Blue layer color */
}

header h1 {
    font-size: 32px;
}

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

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff6600;
}

/* Hauptinhalt-Styling */
main {
    background-color: white;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    flex-grow: 1;
}

section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Footer-Styling */
footer {
    background-color: #0770bb;
    color: white;
    text-align: center;
    padding: 10px 0;
    bottom: 0;
    width: 100%;
    position: relative;
}


footer a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

footer a:hover {
    color: #ff6600;
}


/* Responsives Design */
@media screen and (max-width: 768px) {
    header h1 {
        font-size: 24px;
    }

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

    main {
        margin-top: 10px;
    }

    section h2 {
        font-size: 22px;
    }
}
