body
{
   background-image:url("fond.png");
   color: teal;
   margin-top: 40px
}

h1
{
   text-align: center; /* Pour centrer le titre */
   font-family: "Arial Black", Arial, Verdana, serif; /* Un titre en Arial Black c'est mieux :o;) */
   color: olive
}

h2
{
   text-indent: 30px; /* On décale un peu les sous-titres */
   font-family: "Arial Black", Arial, Verdana, serif; /* On essaie d'avoir Arial Black en priorité */
   color: olive
   
}
p
{
   
   /* La police Comic Sans MS est agréable à lire pour les paragraphes je trouve */
   font-family: "Comic Sans MS", "Trebuchet MS", Georgia, serif;
}
   

a:hover /* Quand le visiteur pointe sur le lien */
{
   text-decoration: underline;
   color: gray;
}
a /* Lien normal */
{
   text-decoration: none;
   color: gray;
   font-style: italic;
   font-weight: bold;
}

div
{ 
font-family: "Comic Sans MS", "Trebuchet MS", Georgia, serif;
text-align: right
}
img
{
border: 2px solid;
border-color: teal;
}