section {
    width: 100%;
    /* height: 550px; */
    padding-left: 8%;
    padding-right: 8%;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: space-between;
    /* flex-direction: column; */
}

.question,
.reponse {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

h1 {
    margin-top: 102px;
    text-align: center;
}

.image {
    margin-left: 5%;
}

.lien {
    text-align: center;
    text-decoration: underline;
}


/* Style the button that is used to open and close the collapsible content */

.collapsible {
    background-color: #777;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

.active,
.collapsible:hover {
    background-color: #555;
}

.collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
}


/* RESPONSIVE */

@media only screen and (min-width: 376px) and (max-width: 425px) {
    /*style petites-moyennes tablettes */
    .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .text {
        padding: 0px;
    }
}

@media only screen and (min-width: 321px) and (max-width: 375px) {
    /*style smartphones et petites tablettes en portrait*/
    .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .text {
        padding: 0px;
    }
}

@media only screen and (max-device-width: 320px) {
    /*style petits smartphones en voie de disparition*/
    .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .text {
        padding: 0px;
    }
}

body,
html {
    scroll-behavior: smooth;
    height: 100%;
    font: 400 15px/1.8 "Bodoni", sans-serif;
}