body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #000; /* Fond noir */
    color: #de8d70; /* Texte blanc pour contraste */
}
a {
    color: #ef763d; /* Couleur des liens */
    text-decoration: none;
}
section {
    margin-bottom: 40px;

}
header {
    max-width: 800px;
    margin: 0 auto;
}
header .logo {
    width: 100%; /* Le logo remplit toute la largeur */
    height: auto;
    margin-bottom: 10px;
}



header h1 {
    margin: 0;
    font-size: 24px;
}

main {
    padding: 20px;
}

.photo-section {
    margin: 20px auto;
}

.photo-section .photo {
    
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video {
    margin: 40px;
}

.video h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.video-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.video {
    max-width: 300px;
    text-align: center;
}

video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer {
   background-color: white; 
   padding: 10px; 
   text-align: center; 
   font-size: 14px; 
   color: black; 
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}


/* Images en pleine largeur sur téléphone */
@media (max-width: 768px) {
    .photo-section .photo,
    .video-container img {
        max-width: 100%;
        height: auto;
    }

    .video {
        margin: 20px 0; /* Réduit les marges pour les petits écrans */
        max-width: 400px;
    }
}