.site-main{
    margin-top: 120px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container{

}

.container .content-pizza{
    margin-top: 15px;
    display: flex;
    gap: 5vw;
}

.container .container-pizza .slideshow{

}

.image img{
    width: 50vh; 
    height: 40vh;
    object-fit: cover;
    outline: 25px solid white;
    border: 1px solid black;
    outline-offset: -26px;
}
.image{
    margin-bottom: 10px;
}

.description{
    text-align: left;
}

#previousBtn, #nextBtn{
    background-color: transparent;
    outline: none;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
}
#previousBtn:hover, #nextBtn:hover{
    background-color: black;
    color: white;
}
.navigation-buttons{
    margin-top: 30px;
    width: 50vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.produit-text .text h3{
    display: none;
}
.bottom{
    margin-top: 20px;
    width: 50vw;
    text-align: left;
}

@media only screen and (max-width: 767px) {
    .content-pizza{
        flex-direction: column;
    }
    .image img{
        width: 90vw;
        outline: 10px solid white;
        border: 1px solid black;
        outline-offset: -11px;
    }
    .description{
        width: 90vw;
    }
    .navigation-buttons{
        width: 90vw;
    }
    #previousBtn, #nextBtn{
        font-size: 2rem;
    }
    .bottom{
        margin-top: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .bottom p{
        width: 90vw;
    }

}