body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* En-tête avec fond foncé (bleu) et positionnement pour la superposition */
header {
    background-color: #2c3e50; /* Couleur foncée/bleue */
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 2; /* L'en-tête passe au premier plan */
}

/* Le titre s'extrapole pour être en partie masqué ou glisser sous le design */
header h1 {
    color: #ffffff; /* Texte en blanc */
    margin: 0;
    position: relative;
    /* Crée l'effet visuel de texte planté/planqué sous l'axe du header */
    transform: translateY(10px);
}

/* Style des autres titres de la page */
h2 {
    color: #2c3e50;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 5px;
}

.record {
    background-color: #fff9c4;
    font-weight: bold;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 15px;
}

table, th, td {
    border: 1px solid #dddddd;
}

th, td {
    padding: 8px;
    text-align: center;
}

img {
    width: 250px;
    border-radius: 12px;
    display: block;
    margin: 10px auto;
}

a {
    text-decoration: none;
    color: #2980b9;
}

a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

footer {
    font-size: 12px;
    text-align: center;
    color: #7f8c8d;
    padding: 15px;
}