body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

header {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 20px 0;
}


.logo {
    background-color: white;
    padding: 10px; /* optionnel, pour un espace autour du logo */
    border-radius: 5px; /* optionnel, pour des coins arrondis */
    width: 200px;  /* Largeur souhaitée */
    height: auto;  /* Garde les proportions */
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
}

.objectif {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.objectif ul {
    list-style-type: none;
    padding: 0;
}

.objectif li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.objectif li:last-child {
    border-bottom: none;
}

.consigne {
    margin-top: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 20px 0;
}
