
/* On travaille sur la balise body, donc sur TOUTE la page */
body
{
	background-image: url("logo_brochure.png");
    background-attachment: fixed; /* Le fond restera fixe */
    background-repeat: no-repeat; /* Le fond ne sera pas répété */
    background-position: bottom right; /* Le fond sera placé en haut à droite */
	background-color: darkblue; /* rgb(9,171,255);*/
}
    

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

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

/* En gris le texte des paragraphes */
p
{
   color: orange;
   font-size: medium;
   font-family: "Comic sans MS", "Time New Roman";
   text-align: center;
}
li
{
   color: white;
   font-size: medium;
   font-family: "Comic sans MS", "Time New Roman";
   text-align: center;
}
