/* feuille */
    .feuille{
        width: 816px;
        height: 950px;
        box-shadow: var(--box-shadow);
        display: flex;
        flex-direction: column;
        gap: 16px;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        padding: 48px 16px;
        border: 1px solid var(--light-gray);
    }

    .contentFeuille{
        margin: 0 64px;
        padding-right: 5px;
        margin-top: 25px;
        overflow-y: auto;
        text-align: justify;
        white-space: pre-line;
        font-weight: 500;
    }

    .contentFeuille::-webkit-scrollbar-thumb{
        background-color: var(--third);
    }

    .contentFeuille:hover::-webkit-scrollbar{
        width: 5px; height: 5px;
    }

    .boxHeaderFooterImg{
        padding: 0 48px;
    }
/* feuille */