body { 
    background-color: white; 
    color: black; 
    font-family: Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* Conteneur centré de 600px max */ 
.page { 
    max-width: 600px; 
    margin: 0 auto; 
    padding: 0 1rem; 
}

/* Header */ 
.site-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1rem 0; 
    border-bottom: 1px solid #ddd;
    margin-bottom: 2rem;
}

.site-title a { 
    font-size: 1.3rem; 
    font-weight: 600; 
    text-decoration: none; 
    color: #222; 
}

.site-nav a { 
    margin-left: 1rem; 
    text-decoration: none; 
    color: #555; 
    font-size: 0.95rem; 
}

.site-nav a:hover { 
    text-decoration: underline; 
}

/* Contenu principal */
h1 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #222;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    color: #0066cc;
}

a:hover {
    text-decoration: underline;
}

