body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Définit la hauteur minimale du body */
}

/* Style de l'en-tête */
header {
    background-color: #6D071A;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Barre de navigation */
nav {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Section principale */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1; /* Permet à la section principale de prendre tout l'espace disponible */
    padding: 20px;
}

h1 {
    margin-bottom: 20px;
}

/* Section produits */
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.product {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    margin: 10px;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product img {
    max-width: 100%;
    border-radius: 8px;
}

.product p {
    margin: 10px 0;
}

/* Pied de page */
footer {
    background-color: #6D071A;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: auto; /* Permet de pousser le footer en bas */
}
