/*Créé par Thomas Mao le 14 mars 2025.*/
/*page CSS pour la page des raisons.*/

.img-raison {
    background-image: url(../image/temple.jpg);
    background-size: 2000px;
    background-repeat: no-repeat;
    overflow: hidden;
}

.section-savoir {
    background-color: bisque;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
}

.sectionsavoir-description {
    margin: 10px;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid black;
    background-color: antiquewhite;
}

img {
    width: 1000px;
    height: 500px;
    border: none;
    border-radius: 2em;
}

.central {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width:1000px) {
    img {
        padding: 0;
        margin: 30px;
        width: 750px;
        height: 400px;
    }
}

@media(max-width:500px) {
    img {
        width: 375px;
        height: 200px;
        padding: 0;

    }
}