body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('Image/FOND_DECRAN.jpg'); /* Chemin mis à jour */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    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 h1 {
    margin: 0 auto;
    text-align: center;
}

main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

.presentation {
    width: 60%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    color: black;
    text-align: left;
}

.presentation-title {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: white;
    font-size: 35px;
}

.presentation-content {
    padding: 15px;
    font-size: 22px;
}

.presentation ul {
    list-style-type: disc;
    margin-left: 20px;
}

.menu {
    width: 33%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.menu-item {
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-decoration: none;
    text-align: center;
    margin-right: 100px;
    padding: 35px;
    border-radius: 5px;
    font-size: 30px;
}

.menu-item:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.footer-images 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;
}

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 */
}
