h1 {
	color: red;
}
body {
	background-image: url('fondmarbre2.png');
	background-repeat: repeat;
	background-attachment: fixed;
	margin: 0;
	padding: 0;
	font-family: "Times New Roman", serif;
}
.container {
	width: 800px;			/* Largeur fixe typique de l'époque */
    max-width: 95%;			/* Pour que ça reste lisible sur mobile */
    margin: 20px auto;     /* Le "auto" centre la colonne horizontalement */
    background-color: white;
    padding: 20px;
    border: 2px solid #000; /* Bordure bien marquée */
    box-shadow: 5px 5px 0px #888; /* Ombre rigide façon Windows 95 */
}

header
{
	text-align: center;
	padding: 0px 0;
	border-bottom: 1px double #000000;
	margin-bottom: 20px;
	max-width: 1000%;
	height: auto;
}

header img {
    display: block;          /* Permet de manipuler l'image comme un bloc */
    margin: 0 auto;          /* Centre l'image elle-même */
    max-width: 100%;         /* Force l'image à ne PAS dépasser du container blanc */
    height: auto;            /* Garde les bonnes proportions */
}
