h2 {
    text-align: center;
    margin-top: 1.5vh;
    margin-bottom: 2vh;
}

.headline {
    margin-top: 1.5vh;
    margin-bottom: 1.5vh;
}

.cd-timeline {
    background-color: white;
}

.jahre {
    display: flex;
    justify-content: space-around;
}

.fadein {
    animation: fade_in 2.5s;
}

.content_img img{
    max-height: 35vh;
    max-width: 20vw;
    height: 35vh;
    width: auto;
    object-fit: cover;
    float: right;
    margin-left: 15px;
    margin-bottom: 15px;
}

.content_img {
    margin: 10px 10px 10px 10px;
    clear: both;
}

.expand:hover {
    text-decoration: underline;
    cursor: pointer;
    font-weight: 800;
}

.default {
    margin-top: 2.5vh;
}

.mbild {
    padding-bottom: 5vh;
}

label {
    font-weight: 650;
    font-size: large;
}

label:hover{
    text-decoration: underline;
    cursor: pointer;
}

.mannschaft {
    display: flex;
    flex-wrap: wrap;
    flex-flow: row wrap;
    justify-content: center;
    row-gap: 5%;
    column-gap: 5%;
}

.mannschaft .caption {
    flex-basis: 100%;
    text-align: center;
}

.mannschaft img {
    max-width: 25%;
    height: 25%;
    width: auto;
    display: block;
    margin: auto;
}

.expanded {
    display: none;
    width: 90%;
    margin: auto;
}

.expanded h6 {
    margin-top: 1.5%;
    margin-bottom: 1%;
    text-decoration: underline;
}

.expanded h5 {
    margin-top: 2.5%;
    margin-bottom: 1.5%;
    text-decoration: underline;
}

.content {
    align-items: center;
    justify-content: center;
}

@keyframes fade_in{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 992px) {
    .jahre {
        align-items: center;
        flex-flow: row wrap;
        row-gap: 5vh;
    }

    .expand {
        width: 15vw;
    }

    .expanded h5 {
        margin-top: 7.5%;
        margin-bottom: 4.5%;
    }

    .content_img img{
        max-height: 90vh;
        max-width: 100%;
        height: 60vh;
        width: auto;
        margin-top: 15px;
    }

    .content_img {
        height: fit-content;
        width: 100%;
        margin: 0px;
        align-items: center;
        justify-content: center;
        display: inline;
    }
}