body {
    font-family: Arial, sans-serif; 
    line-height: 1.6; /* Hauteur de ligne */
    margin: 0;
    padding: 0; /* Marge Intérieure */
    background-color: #eee;
}

/* En-tête de la page */
header {
    background-color: #00b;
    color: white;
    text-align: center;
    padding-top: 16px; padding-bottom: 16px;
    font-size: larger;
}
section {
    margin-left: 2%;
}
/* Titres */
h2 {
    color: black;
    text-decoration: underline;
}

/* Style de l'image */
img {
    max-width: 50%; /* Largeur maximal */
    height: 50%; /* Hauteur */
    border-radius: 25px; /* Bordure arrondie */
    margin-left: 2%;
}

/* Tableau des prix */
table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse; /* Fussion des bordures */
}

table, th, td {
    border: 1px solid black;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #999;
}

/* Liste à puces */
ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Style des liens */
a {
    color: blue;
}

/* Pied de page */
footer {
    background-color: #00b;
    color: white;
    text-align: center;
    padding: 10px;
    position: static;
    width: 100%;
    bottom: 0; 
}
