/******BULLETIN*****/
body {
    width: 100%;
    height: auto;
    background-color: #222;
    font-family: Arial, sans-serif;
    color: #222;
    font-size: 1.2em;

    .retour {
        display: block;
        margin: 20px;
        font-size: 1em;
        color: #8e9c81;
    }

    .retour:hover {
        color: #ccc;
        text-decoration: underline;
    }


    .bulletin-letter {
        display: inline-block;
        margin-left: 50%;
        transform: translateX(-50%);
        margin-top: 20px;
        width: 60%;
        height: auto;
        padding: 20px;
        background-color: #8e9c81;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(255, 254, 254, 0.87);


        .entete {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            height: auto;
            margin-bottom: 20px;


            .entete-left {
                width: 50%;
                text-align: center;

                img {
                    width: 100%;
                    height: auto;
                }
            }

            .entete-right {
                text-align: center;
                margin-right: 20px;
            }
        }

        .date {
            text-align: right;
            margin-right: 50%;
            transform: translateX(50%);
            margin-bottom: 40px;
            margin-top: 50px;
        }

        .entete-bulletin {

            width: 100%;
            height: auto;
            margin-bottom: 20px;

            img {
                width: 100%;
                height: auto;
            }
        }

        .entete-right {
            text-align: center;
            margin-right: 20px;
        }

        .date-bulletin {
            display: flex;
            justify-content: space-around;

            hr {
                width: 80%;
                margin: 0 auto;
                border: 1px solid #ccc;
            }

            .left,
            .right {
                display: inline-block;
                width: 49%;
                text-align: center;
            }

            .left {
                float: left;
            }

            .right {
                float: right;
            }
        }
    }


    .letter-text {
        text-align: justify;
        line-height: 1.6;
        font-size: 0.8em;
        margin: 20px 50px 0 50px;
        position: relative;
        height: 1350px;

        h1 {
            text-align: center;
            margin-bottom: 20px;
            font-size: 1em;
        }

        h2 {
            text-align: center;
            margin-bottom: 20px;
        }

        p {
            margin-bottom: 15px;
        }

        .letter-title {
            font-weight: bold;
            font-size: 1.3em;
            margin-bottom: 10px;
            text-align: center;
        }

        span {
            margin-left: 30px;
        }

        img,
        .photo-lucette {
            width: 50%;
            height: auto;
            margin-top: 20px;
            margin-left: 50%;
            transform: translateX(-50%);
        }



        .bottom-img {
            margin-left: 50%;
            transform: translateX(-50%);
        }

        .signature {
            position: absolute;
            right: 50px;
        }


    }

    .footer {
        position: absolute;
        width: 100%;
        bottom: 0;
        text-align: center;
        padding-bottom: 10px;
        font-size: 14px;
        color: #555;

        hr {
            width: 80%;
            margin: 0 auto;
            border: 1px solid #ccc;
        }


    }

    .bas-page {
        position: absolute;
        bottom: 15px;
        width: 100%;
        font-size: 0.8em;
        text-align: center;
    }

    @media screen and (max-width: 850px) {


        .bulletin-letter {
            width: 90vw;
            padding: 10px;
            margin: 0;
            transform: translateX(0);

            .entete {
                flex-direction: column;
                align-items: center;

            }
        }

        .letter-text {
            margin: 0;
            padding: 0;
            height: auto;

            p {
                font-size: 1em;
                width: 100%;
            }
        }

        .letter-text img,
        .photo-lucette {
            width: 80%;
            margin-top: 40px;
        }

        .footer {
            position: relative;
        }

    }
}