﻿/***** CSS *******/

body{
	font-family: 'Apple Chancery', cursive;
	font-size: 13px;
	text-align: center;
	background-color: #C56C91;
}

h1,h2{
	font-weight: normal;
}

h4 {
    text-transform: uppercase;
    color: rgb(0,90,255);
}

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

footer{
	height: 80px;
	padding-top: 30px;
	text-align: center;
	background-color: #C5C5C5;
	border-top: 2px solid #AAA;
}

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

/*a:link { color: blue; }          /* Liens non visités */
/*a:visited { color: purple; }     /* Liens visités */
/*a:hover { background: yellow; }  /* Liens survolés */
/*a:active { color: red; }         /* Liens actifs */
a:link {
 color: green;
 text-decoration: underline;
 }
a:visited {
 color: red;
 }
a:hover {
 color: yellow;
 text-decoration: none;
}
a:active, a:focus {
 color: blue;
}