.namen {
    display: flex;
    justify-content: space-around;
}

h2,h3 {
    text-align: center;
}

section {
    margin-top: 1.5%;
    margin: auto;
    width: 90%;
}

.nameexpand {
    font-weight: 650;
    font-size: large;
}

.nameexpand:hover {
    text-decoration: underline;
    cursor: pointer;
}

.expanded {
    display: none;
    margin-top: 2%;
}

.bilder {
    margin-top: 2%;
    text-align: center;
}

.bilder img{
    margin: auto;
}

.votterl .bilder {
    display: flex;
    justify-content: space-around;
}

.votterl .bilder img{
    max-height: 80vh;
}

.fadein {
    animation: fade_in 2.5s;
}

.fritscher .bilder {
    display: flex;
    justify-content: space-around;
}

.caption {
    float: right;
    width: 40%;
    text-align: right;
}

#c1 {
    float: left;
    padding-right: 30px;
}

#c2 {
    float: right;
    padding-left: 30px;
}

#c3 {
    float: right;
    padding-left: 30px;
    position: relative;
}

#c4 {
    float: right;
    padding-left: 30px;
    position: relative;
}

.bestzeiten {
    text-align: center;
}

img {
    max-width: 100%;
}


@media screen and (max-width: 992px) {

    .namen, .bilder {
        flex-direction: column;
        align-items: center;
    }

    .caption {
        float: left;
        width: 100%;
        text-align: center;
    }

    .fritscher {
        margin-bottom: 25vh;
    }

}

@keyframes fade_in{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}