<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/***** CSS *******/

body{
	font-family: Brush Script MT, Brush Script Std, cursive;
	font-size: 23px;
	text-align: center;
	background-color: #7A463B;
}

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: yellow;
 text-decoration: underline;
 }
a:visited {
 color:green;
 }
a:hover {
 color: purple;
 text-decoration: none;
}
a:active, a:focus {
 color: blue;
}</pre></body></html>