.titre {
        background-color: white;
}

.sous-titre {
        background-color: white;
}

.content {
    padding: 2vh;
    background-color: white;

}


/* ============================================================
   DESKTOP (min-width: 780px)
   ============================================================ */

@media screen and (min-width: 780px) {

    .titre {
        width: fit-content;
        border-radius: 10px 10px 0 0;
        font-size: 50px;
    }

    .sous-titre {
        display: inline-block;
        width: fit-content;
        font-size: 30px;
        max-width: 100%;
        margin: 50px 0 20px 0;
    }

    .content{
            margin: 100px;
    }

    .final {
        border-radius: 0 0 40px 40px;
        margin-bottom: 3vw;
    }

}

/* ============================================================
   MOBILE (max-width: 780px)
   ============================================================ */

@media screen and (max-width: 780px) {

    .titre {
        margin: 50px 0 20px 0;
        font-size: 45px;
    }

    .sous-titre {
        width: auto;
        display: inline-block;
        font-size: 25px;
        border-radius: 0 10px 0 0;
        margin: 50px 0 20px 0;
    }

    .content{
        margin-bottom: 50px;
    }
}