* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    text-align: center;
    background: linear-gradient(45deg, #1a1a1a, #333333);
    color: antiquewhite;
    font-family: 'Arial', sans-serif;
    animation: gradientAnimation 10s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#tete {
    width: 100%;
    height: 65vh;
    text-align: center;
    position: relative;
    background-image: url('Image/Screenshot_20250109-204649_Alibabacom_edit_213649656539273.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: antiquewhite;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

h1 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 10px;
    text-decoration: underline;
    animation: slideIn 1.5s ease-in-out;
}

@keyframes slideIn {
    0% { transform: translateY(-50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.montre {
    display: flex;
    justify-content: space-around;
    padding: 10%;
    animation: zoomIn 2s ease-in-out;
}

@keyframes zoomIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.animated-img {
    width: 50%;
    height: auto;
    transition: transform 0.5s ease;
}

.animated-img:hover {
    transform: scale(1.1);
}

ul {
    width: 90%;
    text-align: left;
    border-radius: 10px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeInUp 2s ease-in-out;
}

@keyframes fadeInUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

ul li strong {
    color: yellow;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.description {
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    margin: 20px auto;
    border-radius: 10px;
    animation: fadeInUp 2s ease-in-out;
}
.partie {  
    text-align: center;
 
}

.partie h4 {
    text-align: center;
    color: rgb(7, 125, 125);
    font-size: small;
    padding: 20px;
}
.photo {
    border-top-left-radius: 50%;
    border-top-right-radius: 80%;
    box-shadow: 10px 5px 20px green;
    bottom: 0;
    border-bottom-right-radius: 40%;

}
.video-container {
    width: 100%; /* Largeur de la vidéo */
    max-width: 800px; /* Largeur maximale */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Ombre pour un effet élégant */
}
.video-container iframe {
    width: 100%;
    height: 400px; /* Hauteur de la vidéo */
    border: none; /* Supprime la bordure */
    border-radius: 10px; /* Coins arrondis */
}