/*voici ce qui sert à metre l'image de fond*/
body
{
    background-image: url(../Images/background.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover ;
    
}
/*Voici tout les paramètres qui affectent mon contenu*/
article{
    display: flex;
    text-align: justify;
    align-items: center;
    color: white;
    margin-left: 12%;
    margin-right: 12%;
    margin-bottom: 50px;
    background-image: url(../Images/background.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover ;
    
    
}
/*Voici mon image de droite*/
.imagededroite{
    margin-top: 50px;
    margin-left: 15%;
    
}
/*Voici mon image de gauche*/
.imagedegauche{
    margin-right: 15%;

}

p
{
    font-family: arial;
   font-size: 50px; 
}

h1
{
    font-size: 110px;
    color: white;
}
h2
{
    font-size: 20px ;
}
.nom
{
    color: white;
}
/*Dans le media querries, j'y ai mis tout mes paramètres afin que mon site soit responsive*/
@media screen and (max-width: 1024px)
{
    article
    {
        display: flex;
        flex-direction: column;
    }
    .secondarticle
    {
        display: flex;
        flex-direction: column-reverse;
    }
    .imagededroite
    {
        align-content: center;
        margin-left: 0%;
    }
    .imagedegauche
    {
        align-content: center;
        margin-right: 0%;
        margin-top: 2%;
    }
    

}

