/***** CSS *******/

body{
	font-family: Comic Sans MS, Georgia, serif;
	font-size: 17px;
	text-align: center;
	background-color:  #82c7d8    
  
}

h1{
font-family: Times New Roman, sans-serif;
	font-weight: bold;
	text-decoration: underline;
	color: rgb( 153, 50, 41)
}

h2{
	font-weight: bold;
	color: rgb(  8, 12, 89  )
}

p {
    text-indent: 150px;
    letter-spacing: 1px;
}
img{
	width: auto;
	height: auto;
    display: inline; /* block ou inline */
    margin-left: auto;
    margin-right: auto }

footer{
	height: 70px;
	height: 0px;
	padding-top: 30px;
	text-align: center;
	color: rgb(  0, 0, 0 );
	border-top: 2px solid #AAA;
	background-color:  #97c7d3 
}

ul, ol {
    margin: auto;
    width: 20%;
}

/*a:link { color: blue; }          /* Liens non visités */
/*a:visited { color: purple; }      /* Liens visités */
/*a:hover { background: white; }     /* Liens survolés */
/*a:active { color: yellow; }      /* Liens actifs */

a:link {
 color: blue;
 text-decoration: underline; 
 }
a:visited {
 color: white;
 }
a:hover {
 color: orange;
 text-decoration: none; 
}
a:active, a:focus{
 color: green;
}