#floatLeftDiv{
    display: flex;
    justify-content:center;
    flex-direction: column;
}

#floatRightDiv{
    display: flex;
    align-items: center;
}
/*
#floatLeftDiv{
    float:left;
    width:50%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content:center;
}

#floatRightDiv{
    float:right;
    width:50%;
    height: 80%;
    display: flex;
    align-items: center;
}
*/
#imageCarussel{
    width:100%;
    height: 60%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

    border-radius: 20px;
    transform-style: preserve-3d;

    /*
    width: 100%;
    max-width: 800px;
    max-height: 600px;
    height: 100%;
    */
}

/*

        Image Karussell

 */

input[type=radio] {
    display: none;
}

.card {
    position: absolute;
    width: 100%;
    height: 80%;
    left: 0;
    right: 0;
    margin: auto;
    transition: transform .4s ease;
    cursor: pointer;
}


.cards {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    /* margin-bottom: 20px; */
    align-items: center
}

.card img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

#img1:checked ~ .cards #card3, #img2:checked ~ .cards #card1, #img3:checked ~ .cards #card2 {
    transform: translatey(-20%) scale(.8);
    opacity: .4;
    z-index: 0;
}

#img1:checked ~ .cards #card2, #img2:checked ~ .cards #card3, #img3:checked ~ .cards #card1 {
    transform: translatey(20%) scale(.8);
    opacity: .4;
    z-index: 0;
}

#img1:checked ~ .cards #card1, #img2:checked ~ .cards #card2, #img3:checked ~ .cards #card3 {
    transform: translatey(0) scale(1);
    opacity: 1;
    z-index: 1;

.card img {
    box-shadow: 0px 0px 5px 0px rgba(81, 81, 81, 0.47);
}
}


#img2:checked ~ .player #test {
    transform: translateY(0);
}

#img2:checked ~ .player #test  {
    transform: translateY(-40px);
}

#img3:checked ~ .player #test  {
    transform: translateY(-80px);
}

/*

        Ende Image Karussell

 */




/* Mobile */
@media screen and (max-width: 1400px) {
    #imageCarussel{
        height: 90%;
        width: 100%;
        border-radius: 100px;
    }

    #floatRightDiv{
        justify-content: center;
    }

}