/*** MISES EN FORME POUR TOUT CE QUE CONTIENT LA SECTION ACCUEIL ***/
div#boiteAccueil
{
    display: flex;
}
img#pdp
{
    width: 35%;
    margin: 25px;
    border-radius: 50px;
}
div#presentation
{
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
div#boutonsPresentation
{
    display: flex;
    margin: 0;
    height: 200px;
}
.boutonsAccueil
{
    cursor: pointer;
    margin: auto;

    width: 30%;
    height: 50px;

    display: flex;

    background-color: #903749;
    color: whitesmoke;
    border-radius: 50px;

    transition: all 0.6s;
}
.boutonsAccueil p
{
    margin: auto;
}
.boutonsAccueil:hover
{
    width: 50%;
    height: 75px;
    background-color: #E84545;

    transition: all 0.6s;
}
.boutonsAccueil:visited
{
    color: whitesmoke
}
div#texte_consigneAccueil
{
    margin: 50px;
    font-size: 1.8vw;
}
p#texte_presentation_1
{
    font-size: 2.5vw;
}
p#texte_presentation_2
{
    font-size: 1.8vw;
}
section#sectionAccueil strong
{
    font-family: "cooperHewitt_gras", sans-serif;
    color: #E84545;
}
div#presentation > p
{
    margin: auto 25px;
}


/*** POUR LA GESTION DU RESPONSIVE ***/

@media (max-width: 1024px) {

    div#boiteAccueil
    {
        flex-direction: column;
    }
    .boutonsAccueil
    {
        margin: auto;
    }
    div#boutonsPresentation
    {
        height: 150px;
    }
    div#presentation
    {
        width: 100%;
    }
    img#pdp
    {
        width: 50%;
        margin: 10px auto;
    }

    /* AGRANDIR UN PEU LA TAILLE DES TEXTES, TOUJOURS EN UNITE VIEWPORT */
    div#texte_consigneAccueil
    {
        font-size: 3vw;
    }
    p#texte_presentation_1
    {
        font-size: 4.5vw;
    }
    p#texte_presentation_2
    {
        font-size: 3vw;
    }
    div#presentation > p
    {
        margin-top: 25px;
    }


}



