body{
    padding: 0;
    margin: 0;
    background-color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}
.mitte {
    display: flex;
    justify-content: center;
    float: center;
}
.rechts {
    display: flex;
    justify-content: right;
    float: right;
}
.links {
    display: flex;
    justify-content: left;
    float: left;
}
#teaser{
    width: 100%;
    height: 700px;
}
#teaser img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (min-width: 800px){
    #teaser {
        height: 600px;
    }
}

nav{
    position: sticky;
    top: 0px;
    backdrop-filter: blur(6px);
}
nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 24px;
    padding-bottom: 24px;
    color: white;
}
nav ul li a {
    font-weight: 600;
    padding: 16px;
    color: goldenrod;
}

footer ul li a {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 24px;
    padding-bottom: 24px;
    font-weight: 600;
    padding: 16px;
    color: grey;
}
section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    color: white;
}