body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('Image/FOND_DECRAN.jpg'); /* Chemin mis à jour */
    background-size: cover; /* L'image couvre toute la page */
    background-position: center; /* L'image est centrée */
    background-repeat: no-repeat; /* Empêche la répétition de l'image */
    height: 100vh; /* Assure que l'image prend toute la hauteur de l'écran */
    color: white;
    text-align: center;
}

header {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center; /* Place les éléments aux extrémités */
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo-link {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.logo-link img {
    width: 30px;
    height: auto;
}

.logo-link p {
    margin: 0;
    font-size: 12px;
    color: white;
}

header h1 {
    margin: 0 auto;
    text-align: center;
}

main {
    padding: 10px;
}

section {
    padding: 20px;
    margin: 20px auto;
    width: 40%;
    border-radius: 10px;
}

ul {
    list-style: none; /* Supprime les puces */
    padding: 0;
}

li {
    margin: 10px 0;
}

a {
    text-decoration: none; /* Supprime le soulignement */
    color: white; /* Change la couleur du lien */
    font-size: 18px;
    padding: 12px;
    display: block;
    background-color: rgba(0, 0, 0, 0.5); /* Ajoute un fond pour plus de lisibilité */
    border-radius: 5px;
}

a:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Change le fond au survol */
}

footer {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-images {
    display: flex;
    gap: 10px;
    margin-right: 20px; /* Espacement par rapport au texte */
}

.footer-images img {
    max-height: 50px; /* Ajuste la hauteur maximale des images */
    width: auto; /* Permet aux images de garder leurs proportions */
}
