.hypnose-image {
    width: 70%;
    height: auto;
    margin-right: 20%;

    border-radius: 10px;
    background: url(/assets/img/flower.jpeg) center no-repeat;
    background-size: cover;
}

.nichtraucherspritze {
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 20px;
    margin: 2rem;
}


.navbar {
    transition: opacity .66s;
}

.navbar:hover,
.navbar:focus,
.navbar:active {
    opacity: 1 ;
}
.therapy-info {
    display: flex;
    align-items: center; /* Zentriert vertikal */
    justify-content: space-around;
}
.therapy-image {
    justify-items: end;
    max-width: 20%; /* Maximale Breite auf 100% des Containers begrenzen */
    height: auto; /* Automatische Höhe beibehalten, um das Bildverhältnis beizubehalten */
}

li{
    color: white;
}



@media screen and (max-width: 600px) {
    .card-sprechzeiten {
        margin-left: 20%;
    }

    .sprechzeiten-image {
        width: 80%;
        margin-right: 0%;
    }
    .therapy-image {
        justify-items: end;
        max-width: 40%; /* Maximale Breite auf 100% des Containers begrenzen */
        height: auto; /* Automatische Höhe beibehalten, um das Bildverhältnis beizubehalten */
    }

    #more {
        min-height: 140vh !important;
    }
}
@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
    }
}
