/* 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: 16px;
    }

    .contentFeuille{
        margin:  0 64px;
        padding-right: 5px;
        overflow-y: auto;
        text-align: justify;
        white-space: pre-line;
    }

    .contentFeuille::-webkit-scrollbar{
        width: 4px;
        height: 4px;
    }

    .contentFeuille::-webkit-scrollbar-track{
        background-color: transparent;
    }

    .contentFeuille::-webkit-scrollbar-thumb{
        background-color: var(--red);
        border-radius: 16px;
    }

    .contentFeuille:hover::-webkit-scrollbar{
        width: 10px; height: 10px;
    }

    .boxHeaderFooterImg{
        padding: 0 32px;
    }
/* feuille */