/* Fond toujours noir, peu importe les préférences système */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
  
body {
    background-color: #1a1a1a;
    color: white;
    display: flex;
    flex-direction: column;
}
  
main {
    flex: 1;
    margin-top: 80px; /* Compensation pour le header fixe */
    padding: 2rem 0;
}