body {
    /* REMPLACEZ L'URL CI-DESSOUS PAR LE LIEN DE VOTRE PHOTO */
    background-image: url('logo4.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    color: black;
    text-align: center;
}

/* Titre Principal */
.main-title {
    font-family: 'Green Queen', sans-serif; /* Assurez-vous d'avoir le fichier police */
    font-size: 4rem;
    margin-top: 20px;
    margin-bottom: 0;
}

/* Slogan et Footer */
.slogan, .footer-text {
    font-family: 'Dynalight', cursive;
    font-size: 2rem;
    margin-top: 5px;
}

/* Alignement des logos */
.social-links {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Espace entre les logos */
}

.social-links img {
    width: 50px; /* Taille des logos */
    height: 50px;
    transition: transform 0.3s;
}

.social-links img:hover {
    transform: scale(1.2);
}

/* Vidéo */
.video-container {
    margin: 30px 0;
}

/* Footer calé en bas */
footer {
    margin-top: auto;
    padding: 20px;
    width: 100%;
}