/* Style de CSS pour mes sites
body {
 background: white;
 color: black;
 font-family: Arial, Helvetica, sans-serif;
 text-align: left;
 font-size: 16px;
}

p {
 color: black;
 text-align: left;
 text-indent: 3em; /* Pour créer une indentation de trois fois la police en début du paragraphe */
 font-family: Arial,Verdana,sans-serif;
 font-size: 16px;
}

nav ul li {
	padding-left: 25px; 
float: left; 
display: block; 
list-style-type: none;
}

/* Pour les titres ceux de H1 s'imposent aux suivants sauf si on indique une autre propriété dans l'un des suivants */

h1 {
 background: black;
 color: yellow;
 display: inline-block;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 33px;
 font-weight: bold;
}

h2 {
 background: black;
 color: yellow;
 display: inline-block;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 30px;
 font-weight: bold;
}

h3 {
 background: black;
 color: yellow;
 display: inline-block;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 27px;
 font-weight: bold;
}
h4 {
  background: black;
 color: yellow;
 display: inline-block;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 24px;
 font-weight: bold;
}

h5 {
 background: black;
 color: yellow;
 display: inline-block;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 21px;
 font-weight: bold;
}

a:link {
 color: blue;
 text-align: left;
}

a:visited {
 color: gray;
 text-align: left;
}

a:hover, a:focus, a:active {
 color: purple;
 text-align: left;
}

/* class pour centrer un texte dans une division et saut de ligne*/

.centre {
 text-align: center;
}

/* class pour centrer une image dans une division et saut de ligne*/

IMG.centrage 
{
    display: block;
    margin-left: auto;
    margin-right: auto 
}

/* class pour mettre en couleur un mot ou plus, utilisable avec la balise SPAN */

.rouge {
 color: red;
}

.bleu {
 color: blue;
}

.vert {
 color: green;
}

.brun {
 color: maroon;
}

.fuch {
 color: fuchsia;
}

.pourpre {
 color: purple;
}

.jaune {
 color: yellow;
}

.citron {
 color: lime;
}

.blanc {
 color: white;
}

.noir {
 color: black;
}

.copyright {
 background: white;
 color: blue;
 display: inline-block;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 25px;
 font-weight: bold;
}
