


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0a2a; /* Dark Blue */
    color: #fff;
}

header .header-image {
    width: 10%; /* Divide the width of the image by 2 */
    height: auto; /* Maintain the aspect ratio */
}
header {
    background-color: #000684; /* Darker Blue */
    color: #fff;
    text-align: left;
    padding: 1em;
    display: flex; 
}



.image-section img {
    width: 20%; /* Largeur de l'image réduite à 50% de la largeur de la section */
    height: 20%; /* Permet à la hauteur de s'ajuster automatiquement pour maintenir les proportions originales */
    display: block; /* Élimine l'espace sous l'image causé par l'affichage en ligne par défaut */
    margin: 0 auto; /* Centre l'image horizontalement dans la section */
}



  
nav {
    background-color: #1c1c4f; /* Darker Blue */
    overflow: hidden;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

nav li {
    float: left;
}

nav a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav a:hover {
    background-color: #0e0e33; /* Slightly Darker Blue on Hover */
}

main {
    padding: 20px;
}


section {
    margin-bottom: 20px;
}

todelete
/* Slideshow container */
.slideshow-container {
    width: 800px;  /* Set the container width in pixels */
    height: 400px;  /* Set the container height in pixels */
    position: relative;
    overflow: hidden;  /* Hide overflow to prevent showing parts of images outside the container */
    margin: 0 auto;  /* Center the slideshow horizontally */
}

/* Slideshow images */
.slideshow-image {
    width: 400px;  /* Set image width in pixels */
    height: 200px;  /* Set image height in pixels */
    object-fit: cover;  /* Ensures images cover the container while maintaining aspect ratio */
    display: block;
}
todelete


#slideshow {
    text-align: center;
}
/*
.slideshow-container {
    position: relative;
    max-width: 100%;
    height: 648px; 
    overflow: hidden;
}*/

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.slide {
    display: none;
}

.slideshow-caption {
    text-align: center;
    margin-top: 10px; /* Marge supérieure pour l'espace */
}

.video-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  .video-container {
    text-align: center; /* Aligns the content (including the title) to the center */
    width: 240px;
    margin-bottom: 20px;
    border-radius: 10px; /* Coins arrondis */
    overflow: hidden;
  }
  
  .video-container h4 {
    text-align: center;
    font-size: 15px; /* Adjust font size as needed */
    color: #fff; /* Adjust font color as needed */
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Coins arrondis */
}

@media screen and (max-width: 600px) {
    .video-row {
        flex-direction: column;
        align-items: center;
    }
}

footer {
    background-color: #1c1c4f; /* Darker Blue */
    color: #fff;
    text-align: center;
    padding: 1em;
    position: fixed;
    width: 100%;
    bottom: 0;
}


