body {
    margin: 0;
    display: flex;
    flex-flow:column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.displaycontainer{
   display:flex;
}

#display{
   //min-width:400px;
   width:400px;
   //min-height:300px;
   height:300px;
   border: 1px black solid;
}

.carousel {
    display: flex;
    align-items: center;
}

.carousel-container {
    display: flex;
    overflow: hidden;
    gap:6px;
    //overflow-x: scroll;
    width:380px;
}

.carousel-slide {
    width: 250px;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

#prevBtn, #prevBtndisp,
#nextBtn, #nextBtndisp, {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

#prevBtn:focus, #prevBtndisp:focus,
#nextBtn:focus, #nextBtndisp:focus {
    outline: none;
}
