body {
background-color : #4787a3;
color : #BBAbAB;
}
/*mettre une couleur a titre ??? */

.titre{
background-color : #c9edfd;
display : flex;
justify-content : center;
}
.titre h1{
color : #00f;
}
h1{
color : #EE4545;

}
.container{
background-color : #00f;
padding : 10px;
display : flex;
flex-direction : row;
justify-content : center;
}
.article{
background-color : #c9edfd;
margin : 10px;

}
.menu{
background-color : #00a9f3;
display : flex;
flex-direction : row;
justify-content : center;
}
.menu ul{
display : flex;
flex-direction : row;

}
.menu ul li{
background-color : #00f;
width : 80px;
list-style : none;
transition : 0.5s;
font-size : 1.5em;
flex-direction : row;
justify-content : center;
}
.menu ul li:hover{
background-color : #fa8080;
font-size : 1.8em;
}