/* Kopfzeile */

.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: white;
    display: flex;
    font-size: 1em;
    margin: 0 auto;
    border-bottom: lightgrey solid 1px;
    justify-content: center;
    align-items: center;
    height: 50px;
}
.header img{
    position: absolute;
    left: 10px;
    top: 5px;
    height: 40px;
    width: auto;
    margin-left: 10px;
}

.burger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    left: 10px;
    top: 5px;
}

.nav-container {
    display: flex;
    position: relative;
    width: 100%;
    max-width: 1500px;
    justify-content: flex-start;
    height: 50px;

}

.nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2px;
    max-width: 1000px;
}

.nav a {
    color: black;
    text-decoration: none;
    padding: 10px 20px;
    flex: 1;
    text-align: center;
    transition: color 0.3s;

}

.nav a:hover {
    color: #00509c;
}

/*Footer*/
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    border-top: lightgrey solid 1px;
    font-size: 1em;
    z-index: 1000;

}
footer.p {
    justify-content: center;
}
.footer a {
    text-decoration: none;
    color: inherit;
}
.footer a:hover {
    color: #00509c;
    text-decoration: none;
}