

#centre{
    display: flex;
    width: 200%;
    gap: 10px;
}

canvas{
    min-height:4000px ;
}
body{
    margin: 0;
    padding: 0;
    max-width: 100%;
    background-size: 100% 200%;
    min-height: fit-content;
}

main{
    padding-top: 20px;
    padding-bottom: 0;
    overflow: hidden;
}


#slideshow {
    margin-top: 5rem;
    margin: auto;
    padding:min(3em, 8%) ;
    height: 450px;
    width: 80%;
    box-sizing: border-box;
}

.container {
    margin: auto;
    width: 100%;
    max-width: 190px;
    perspective: 1000px;
    position: relative;
    padding-top: 80px;
}

.content-carousel{
    width: 100%;
    position: absolute;
    float: right;
    animation: rotatorkeyframe 17s infinite linear;
    transform-style: preserve-3d;
}

@keyframes rotatorkeyframe {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

.content-carousel:hover {
    cursor: pointer;
    animation-play-state: paused;
}

.content-carousel div {
    width: 100px;
    height: 100px;

    position: absolute;

}


.slidet-item{
    position: absolute;
    border-radius: 1px;
}

.content-carousel div img{
    image-rendering: auto;
    transition: all 300ms;
    width: 100%;
    height: 100%;
}

.content-carousel div img:hover{
    transform: scale(1.2);
    transition: all 300ms;
}

#js{
    border-radius: 10px ;
}

#ps, #pr, #wd {
    height: 110px;
}

.miniatures{
    height: 200px;
    width: auto;
    position: relative;
    z-index:2;
}


#click{
    display: flex;
    gap: 40px;
    margin-left: 50px;
    justify-content: center;
    margin: 30px;
}

.hide{
    display: none;
}

.active{
    border: #fea680 solid 2px;
}

.miniatures a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px white solid;
}

.miniatures a img:hover{
    border : 4px #fea680 solid;
}

.miniatures a{
    height: 100%;
    width: 100%;
    display: block;
}

#plus, #plus:visited{
    text-align: center;
    color: black;
    font-size: 1.5rem;
    margin: 40px;
}

a :hover{
    color: #e7906b;
    cursor: pointer;
}
a p{
    text-decoration: underline;
}

h2 span {
    color: #e7906b;
}

h2 {
    width: 60%;
    text-wrap:wrap;
   margin: auto;
}

#p{
    font-size: 1.5rem;
}