html {
}
body{
  margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.image-container {
    display: flex;
    flex-wrap: nowrap;
    width: 100vw;
    height: 100vh; /* Full viewport height */
    overflow: auto;
  white-space: nowrap;
  z-index: -1;
}


.image-container img {
    /* width: 50%; /* Each image takes up 50% of the width */ */
    height: 100vh;
    object-fit: cover; /* Ensure the image covers the container without distortion */
    /* opacity: .95; */
}
/* Centrage de la navigation */
   .nav-container {
       display: flex;
       /* justify-content: center; */
       align-items: center;
       flex-direction: column;
       position: fixed;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
       margin-top: 250px;
       color: white;
       /* gap: 150px; */
       width: 100%;
       /* height: 100vh;  */
       /* Full viewport height */
         z-index: 1;
         /* overflow: auto; */
   }

   /* Styles des liens de navigation */
   .nav-links a {
       text-decoration: none;
       font-weight: 500;
       font-size: 1.2em;
       font-family: 'Oswald', sans-serif;
       transition: color 0.3s;
       padding: 25px;
   }

   .nav-links a:hover {
       color: black; /* Changer la couleur au survol */
       text-decoration: underline;
   }

@media screen and (max-width: 700px) {
    .image-container img {
      width: 100%;
      height: 100vh;
      object-fit: cover;
  }
  .nav-links a {
      font-size: 0.9em;
      padding: 10px;
  }
}
.svg-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;; /* Ensures the SVG doesn't interfere with any interactions */
    /* mix-blend-mode: difference; */
    z-index: 1;
}

.svg-container img {
    width: 25vw; /* Adjust the size as needed */
    height: auto;
}

a { outline: none; text-decoration: none; }
a:link { color: inherit; text-decoration: none; }
a:visited { color: inherit; text-decoration: none; }
a:hover { color: inherit; text-decoration: none; }
a:focus { color: inherit; text-decoration: none; }
a:active { color: inherit; text-decoration: none; }

.logo{
max-width: 215px;
width: 100%;
margin: 50px;
position: fixed;
}



/* .column-wrap {
height: 100%;
position: relative;
}
.column-wrap {
width: 100%;
-webkit-box-sizing: border-box;
        box-sizing: border-box;
} */
/* div {
display: block;
} */

/* .center {
text-align: center;
padding: 24px;
} */

p {
font-size: 100px;
font-family: sans-serif;
justify-content: center;
text-align: justify;
font-family: "Oswald", sans-serif;
font-optical-sizing: auto;
font-weight: 300;
font-style: normal;
color: white;
}

footer p {
position: fixed;
bottom: 0;
margin-bottom: 0px;
color: white;
font-size:10px;
font-family: sans-serif;
text-transform: uppercase;
z-index: 99;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
color: white;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: black;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: red;
}
