.speisekarte-holder{
    width: 100%;
    max-width: 100%;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: max-content;
}
.speisekarte-background{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.speisekarte{
    width: 100%;
    padding: var(--page-padding);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    aspect-ratio: 16/9;
}

.speisen{
    width: 100%;
    height: 100%;
}
.speise{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.6s;
}
.speise.active{
    opacity: 1;
}


.speise-buttons{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
    z-index: 3;
    padding: var(--page-padding);
}
.speise-button{
    width: 33%;
    max-width: 320px;
    position: relative;
    cursor: pointer;
    user-select: none;
}
.speise-button.active > p{
    color: var(--ac-l);
}
.speise-brett{
    width: 100%;
    height: auto;
    min-height: 35px;
    box-shadow: 0 0 5px black;
}
.speise-button p{
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(1rem, 3vw, 1.7rem);
    color: var(--pr);
    font-weight: 700;
    text-shadow: 0 0 3px black;
}

@media(max-width: 650px){
    .speise-buttons{
        top: 108%;
    }
}

@media(max-width: 500px){
    .speisekarte-holder{
        margin-top: 70px !important;
    }

    .speise-buttons{
        gap: 10px;
    }
}


.speise-ranke{
    height: 100%;
    width: auto;
    position: absolute;
    top: -10%;
}
.speise-ranke1{
    left: -2%;
}
.speise-ranke2{
    right: -2%;
    transform: scaleX(-1);
}
.speise-nagel{
    position: absolute;
    top: -30%;
    left: 50%;
    height: 50%;
    transform: translateX(-50%);
}