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

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

h2
{
    color: orange;
	font-size: 2em;
	font-family: "Comic sans MS", "Time New Roman";
}

/* En gris le texte des paragraphes */
p, u1, li
{
   color:orange;
   font-size: 1.4em;
   font-family: "Comic sans MS", "Time New Roman";
   text-align: center;
}
a
{
   color:white;
   font-size: 1 em;
   font-family: "Comic sans MS", "Time New Roman";
   text-align: center;
}
mark
{
   color:yellow;
   background:transparent;
   font-size: 1 em;
   font-family: "Comic sans MS", "Time New Roman";
   text-align: center;
}
