/* ------------ DÉBUT PAGE RÉFLÉCHIR ------------ */

.réfléchir{
    background-image: url(bg-reflechir.jpg);
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
}

.book-cover-container{
    margin-left: auto;
    margin-right: auto;
    margin-top: 4rem;
    margin-bottom: 1rem;

    width: 90%;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.book-cover{
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    width: 200px;
    height: 300px;
    box-shadow: 10px 0px 0px -4px #E7DECC, 12px 0px 0px 0px #80471C, 15px 5px 10px 0px black;
    transition: 0.5s;
}

.book-cover:hover{
    margin-top: 0rem;
    width: 202px;
    height: 302px;
}

.book{
    width: 100%;
    height: 100%;
    border-top-left-radius: 1.5%;
    border-bottom-left-radius: 1.5%;
    object-fit: cover;
}

/* ------------ FIN PAGE RÉFLÉCHIR ------------ */

/* ------------ DÉBUT PAGE DE TEXTE ------------ */

.description{
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
    margin-bottom: 5rem;

    padding-top: 1rem;
    padding-bottom: 1rem;

    width: 80%;
    max-width: 550px;

    background-color: black;

    justify-content: center;
    text-align: center;
}

.writing{
    text-align: justify;
    text-indent: 5%;
}

/* ------------ FIN PAGE DE TEXTE ------------ */