/* Réinitialisation de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    position: absolute;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    min-height: 100vh;
}

/* En-tête */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #08355D; /* Changement de couleur du header */
    width: 100%;
    padding: 10px 20px;
    position: fixed; /* Fixe le header en haut de la page */
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo-left img,
.logo-right img {
    max-width: 100px;
    height: auto;
}

/* Texte centré avec un cadre plus petit */
.text-center {
    flex-grow: 1;
    text-align: center;
    padding: 10px;
    border: 2px solid #ccc;
    color: #666;
    font-size: 1.1rem;
    background-color: white;
    width: auto; /* Ajustement pour que le cadre soit autour du texte seulement */
    margin: 0 20px;
}

/* Section de contenu */
.content {
    margin-top: 120px; /* Espacement sous l'en-tête fixe */
    text-align: center;
    font-size: 1.2rem;
    color: #555;
}

/* Logo au centre */
.logo-center {
    margin-top: 30px;
}

.logo-center img {
    max-width: 200px;
    height: auto;
}

/* Style pour les boutons */
.buttons {
    margin-top: 30px;
}

.button {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: white;
    background-color: #08355D; /* Couleur du bouton identique au header */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #062f49; /* Effet au survol du bouton */
}

/* Footer */
.footer {
    background-color: #ccc; /* Couleur gris pour le footer */
    text-align: center;
    padding: 20px;
    margin-top: auto; /* Permet de pousser le footer tout en bas */
    width: 100%;
}

.footer p {
    color: #333;
    font-size: 1rem;
}
