body {
    padding: 0;
    margin: 0;
    font-family: monospace;
    font-size: x-large;
    background-color: rgb(184, 173, 153);

}
header {
    padding:0;
    margin: 0;
    background-color:rgb(241 255 255)
}

.mitte {
    display: flex;
    justify-content: center;
    align-items: center;
}

#teaser {
    width: 100%;
    height: 300px;
}

#teaser img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media screen and (min-width: 500px){
    #teaser {
        height: 400px;
    }
}

@media screen and (min-width: 700px){
    #teaser {
        height: 500px;
    }
}

@media screen and (min-width: 900px){
    #teaser {
        height: 600px;
    }
}

@media screen and (min-width: 1100px){
    #teaser {
        height: 700px;
    }
}
@media screen and (min-width: 1300px){
    #teaser {
        height: 800px;
    }
}

@media screen and (min-width: 1500px){
    #teaser {
        height: 900px;
    }
}

nav {
    position: sticky;
    top: 0px;
    color: rgb(223 240 255);
    background-color: rgb(184, 173, 153);
}

footer ul, nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 16px;
    padding-bottom: 16px;
    color: rgb(223 240 255);
}

footer ul li a, nav ul li a {
    color: rgb(223 240 255);
    padding: 24px;
    font-weight: 600;
}

section {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.container{
padding: 2rem;
}

.slider-wrapper {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
}

.slider {
    display: flex;
    aspect-ratio: 4 / 3;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0,0%, 0%, 0.25);
    border-radius: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.slider:: ::-webkit-scrollbar {
    display: none;
}

.slider img {
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: contain;
}

.slider-nav {
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.slider-nav a {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.75;
    transition: opacity ease 250ms;
}

.slider-nav a:hover {
    opacity: 1;
} 

