/* Style général pour correspondre à la capture d'écran */
body {
    background-color: #333333; /* Fond gris foncé */
    color: #ffffff;            /* Texte blanc */
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: normal;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc; /* Texte légèrement plus clair */
}

/* Style de la mention en bas de page */
.mention--hebergeur {
    font-size: 0.75rem;
    color: #999999;
    padding-bottom: 20px;
}

.mention--hebergeur a {
    color: #999999;
    text-decoration: underline;
}