
/* 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;
	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: 2em;
	font-family: "Comic sans MS", "Time New Roman";
	text-align: center;
}

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

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

