body,
html {
    margin: 0;
    padding: 0;
}

.fullscreen-image {
    display: block;
    width: 90vw;
    /* La largeur de l'écran en unités de viewport */
    height: auto;
    /* La hauteur est ajustée automatiquement pour maintenir les proportions de l'image */
    margin: auto;
}

.mon_conteneur_02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.mon_conteneur_02 img {
    margin-left: 10px;
    margin-right: 10px;
}

.image-container {
    width: 100%;
    height: auto;
}

.image-container img {
    width: 100%;
    height: auto;
}

/* Style pour le menu */

nav {
    /*background-color: rgb(11, 5, 81);*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem;
}

nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    width: 200px;
    color: rgb(232, 236, 13);
    margin-right: 0rem;
}

nav ul li a {
    color: rgb(232, 236, 13);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: rgb(112, 121, 118);
}


/* Style pour le header et le footer */

.header,
.footer {
    background-color: #ddd;
    padding: 1rem;
    text-align: center;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    display: inline-block;
    margin-right: 10px;
}

.menu a {
    font-size: 24px;
    text-decoration: none;
    color: rgb(1, 1, 1);
}

.has-submenu {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    padding: 10px;
}

.has-submenu:hover .submenu {
    display: block;
}

.center {
    width: 1350px;
    margin-left: 80px;
    margin-right: auto;
}

