body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    max-width: 100%;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, button {
    padding: 10px;
}

.access-request a {
    color: white;
    text-decoration: underline;
    margin-top: 10px;
}

.navigation {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #1a1a1a;
    padding: 15px;
    gap: 20px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000; /* Assurez-vous que la barre de navigation reste au-dessus de la bannière */
}

.navigation a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #ff6600;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1a1a1a;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #333;
}

.banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1; /* Assurez-vous que la bannière est en dessous de la barre de navigation */
}

.banner-images { 

display: flex; 
transition: transform 3s ease-in-out; } 

.banner-image { 

min-width: 100%; 
height: 1500px; /* Ajustez la hauteur selon vos besoins */ 
object-fit: cover; }

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  z-index: 1000;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
  
   .add-text {
            position: absolute;
            top: 800px; /* Ajustez la position selon vos besoins */
            left: 10px; /* Ajustez la position selon vos besoins */
            width: 100%; /* Ajustez la taille selon vos besoins */
            z-index: 1001; /* Assurez-vous que le logo est au-dessus de la bannière */
			 font-size: 60px;
			 font-weight: bold;
        }

.red-text {
    color: blue;
	text-shadow: -1px -1px 0 #000,  /* Contour en noir */
                  1px -1px 0 #000,
                 -1px 1px 0 #000,
                  1px 1px 0 #000;
}

.black-text {
    color: yellow;
	text-shadow: -1px -1px 0 #000,  /* Contour en noir */
                  1px -1px 0 #000,
                 -1px 1px 0 #000,
                  1px 1px 0 #000;
    text-indent: 60px; /* Ajustez cette valeur selon vos besoins */}