
/* On travaille sur la balise body, donc sur TOUTE la page */
body
{
		background-color: blue; /* rgb(9,171,255);*/
}
 
#conteneur
{
    display: flex;
    flex-direction: column;
	flex-wrap:wrap;
	justify-content: space-between;
	height:700px;
        } 

/* En bleu les titres et les mots en italique */
h1, em
{
    color: white;
	font-size: 2.2em;
	font-family: "Comic sans MS", "Time New Roman";
	text-align: center;
}

h2
{
    color: white;
	font-size: xxx-large;
	font-family: "Comic sans MS", "Time New Roman";
	text-align: center;
}

h3
{
    color: yellow;
	font-size: 1.2em;
	font-family: "Comic sans MS", "Time New Roman";
}

/* En gris le texte des paragraphes */
h4
{
   color:orange;
   font-size: 1.1em;
   font-family: "Comic sans MS", "Time New Roman";
   text-align: left;
}
p,u1,li
{
   color: white;
   font-size: 1em;
   font-family: "Comic sans MS", "Time New Roman";
   text-align: left;
}
