main{
    max-width:1200px;
    margin:auto;
    padding:30px;
}

blockquote {
    max-width: 800px;
    margin:  40px auto;
    padding:30px;
    background: #f8f8f8;
    border-left: 6px solid #6e8023;
    font-size: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,.08);
}

blockquote sub {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: #606060;
}

#images {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.person {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: .3s;
}

.person:hover {
    transform: translateY(-5px);
}

.personImg {
    max-height: 300px;
    max-width: 300px;
}

*{
    box-sizing:border-box;
}

/*Slideshow*/
.slideshow{
    position:relative;
    width:min(100%,1000px);
    height:clamp(220px,35vw,320px);
    margin: 50px auto;
    overflow:visible;
    margin-top: 1rem;
    background-color: #c1c6c8;
    border: #6e8023 5px solid;
    border-radius: 15px;
}

.img{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    opacity:0;
    pointer-events:none;
    overflow:hidden;
    border-radius:8px;

    transition:
        left .45s ease,
        transform .45s ease,
        opacity .45s ease;
}

.img img{
    display:block;
    width:100%;
    height:100%;
    object-fit: cover;
    border-radius:8px;
}


/* mittleres Bild */
.center{
    left:50%;
    width:150px;
    height:150px;
    transform:translate(-50%,-50%);
    opacity:1;
    z-index:5;
    pointer-events:auto;
}

.center img:hover{
    transform:scale(1.05);
    transition:transform .2s ease;
}


/* links und rechts erste Reihe */
.left1, .right1{
    width:120px;
    height:120px;
    opacity:.9;
    z-index:4;
    pointer-events:auto;
}

.left1{
    left:34%;
    transform:translate(-50%,-50%);
}

.right1{
    left:66%;
    transform:translate(-50%,-50%);
}


/* links und rechts zweite Reihe */
.left2, .right2{
    width:90px;
    height:90px;
    opacity:.6;
    z-index:3;
    pointer-events:auto;
}

.left2{
    left:18%;
    transform:translate(-50%,-50%);
}

.right2{
    left:82%;
    transform:translate(-50%,-50%);
}
.prev, .next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:20;

    cursor:pointer;
    user-select:none;

    padding:12px;
    font-size:clamp(20px,2vw,30px);
    font-weight:bold;

    color:#89a02c;
    border-radius:4px;

    transition:
        background-color .3s ease,
        color .3s ease;
}

.prev{
    left:5px;
}

.next{
    right:5px;
}

.prev:hover, .next:hover{
    color:#6e8023;
    background:rgba(169,169,169,.5);
}

.dots{
    position:absolute;
    left:50%;
    bottom:5px;
    transform:translateX(-50%);
    z-index:20;
}

.dot{
    cursor:pointer;
    width:12px;
    height:12px;
    margin:0 3px;
    border: black solid 1px;
    border-radius:50%;
    background:#bbb;
    display:inline-block;
    transition:background-color .3s ease;
}

.dot:hover,
.active{
    background:#717171;
}

@media (max-width:900px){

    .left2,
    .right2{
        display:none;
    }

    .left1{
        left:28%;
    }

    .right1{
        left:72%;
    }

    .center img{
        width:150px;
    }

    .left1 img,
    .right1 img{
        width:110px;
    }

    .slideshow{
        height:240px;
    }
}

@media (max-width:650px){

    .slideshow{
        height:220px;
    }

    .left1,
    .right1{
        display:none;
    }

    .center{
        left:50%;
    }

    .center img{
        width:min(150px,70vw);
    }

    .prev{
        left:5px;
    }

    .next{
        right:5px;
    }

    .prev,
    .next{
        font-size:22px;
        padding:8px;
    }

    .dots{
        bottom:0;
    }

    .dot{
        width:10px;
        height:10px;
    }
}