body /* On travaille sur la balise body, donc sur TOUTE la page */
{
background-image: url("../images/glace.jpg") 
}
a
{
   text-decoration: none; /* Les liens ne seront plus soulignés */
   color: blue; /* Les liens seront en rouge au lieu de bleu */
   font-style: italic; /* Les liens seront en italique (pourquoi pas ?) */
}
a img /* Toutes les images contenues dans un lien */
{
   border: none; /* Pas de bordure */
}
a:hover /* Quand le visiteur pointe sur le lien */
{
   text-decoration: underline; /* Le lien deviendra souligné quand on pointera dessus */
   color: green; /* Le lien sera écrit en vert quand on pointera dessus */
}
p
{
   color: maroon;
  font-size: medium; 
  font-family: "Comic Sans MS", Arial, Verdana, serif;
  font-weight: lighter;
  /*width: 90%;*/
  text-align: justify;
  /*text-indent:20; */
  padding-left: 5%
}
h1
{
color: maroon;
text-align: center; /* Pour centrer le titre */
font-family: "Comic Sans MS", Arial, Verdana, serif;
font-size: xx-large;
}
h2
{
color: maroon;
text-align: center; /* Pour centrer le titre */
font-family: "Comic Sans MS", Arial, Verdana, serif;
font-size: x-large;
}
h3
{
color: maroon;
text-align: center; /* Pour centrer le titre */
font-family: "Comic Sans MS", Arial, Verdana, serif;
font-size: large;
}
.minuscule
{
   font-size: xx-small;
   font-family: "Comic Sans MS", Arial, Verdana, serif;
   color: green;
}
.trespetit
{
   font-size: x-small;
}
.petit
{
   font-size: small;
}
.moyen
{
   font-size: medium;
}
.grand
{
   font-size: large;
   color: maroon;
}
.tresgrand
{
   font-size: x-large;
}
.supermegagigatresgrand
{
   font-size: xx-large;
}
table
{
    border-collapse: collapse;  /* Les bordures du tableau seront collées (plus joli) */
}

td /* Les cellules normales */
{
   background-image: url("../images/glace.jpg");
   border: 0px solid black;
   font-family: "Comic Sans MS", "Trebuchet MS", Arial, Verdana, serif;
   text-align: center; /* Tous les textes des cellules seront centrés*/
   font-size: large;
   color: maroon;
}
tr
{
   background-image: url("../images/glace.jpg"); 
}