* {
  margin: 0;
  padding: 0;
}


.title {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  z-index: 100;
  text-align: center;
  user-select: none;
  z-index: 100;
  pointer-events: auto;
  mix-blend-mode: difference;
}

.title a {
  text-decoration: none; /* Removes underline */
  color: inherit; /* Inherits the color from the header */
}

.title header {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #FFFFFF;
  font-size: 30pt;
  mix-blend-mode: difference;
}



.background-video {
  z-index: -100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

nav {
  position: fixed;
  bottom: 0;
  padding: 20px;
  z-index: 300;
  display: flex;
  flex-direction: column;
}

.home-page nav {
    mix-blend-mode: difference;
}

.nav-left {
  left: 0;
}

.nav-right {
  right: 0;
}

nav a {
  text-decoration: none;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 20pt;
  color: black;
}

nav a:hover{
  color: white;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: black;
}

.home-page nav a {
  color: white;
}

.home-page nav a:hover {
  color: black;
  -webkit-text-stroke: 1px;
  -webkit-text-stroke-color: white;
}

.about-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.about {
  width: max(50vw, 900px);
  height: 50vh;
  overflow: hidden;
  overflow-y: scroll;
  font-size: 30pt;
  text-align: left;
  display: flex;
  color: black;
  z-index: 200;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}

.about::-webkit-scrollbar {
  display: none;
}

.about-border {
    width: max(60vw, 700px);
    height: 50vh;  
    position: absolute;
    z-index: 1000;
    pointer-events: none;
}

.about-page {
  background-color: white;
}





.nav-archive-home {
  position: fixed;
}




/* styles voor kleinere schermen - lists in archive */


@media only screen and (max-width: 768px) {
  div.about {
    font-size: 25pt;
    padding-left: 15px;
    padding-right: 15px;
  }

  .title header {
    font-size: 23pt;
    -webkit-text-stroke: 1.5px;
    -webkit-text-stroke-color: #AA7272;
  }

  .project-scroll {
    width: calc(100vw - 16px);
  }

  .custom-cursor{
    display: none;
  }
  
  .project-title {
    width: 70vw;
    padding-left: 13vw;
    font-size: 15pt;
  }

  nav a{
    font-size: 15pt;
  }

  .about-border{
    display: none;
  }

  .project-scroll li img {
    height: 40vh;
    width: auto;
  }

  .archive-page {
    gap: 0vh;
  }

  nav {
    top: 0;
    bottom: auto;
    display: flex;
    flex-direction: column-reverse;
  }

}

.gallery-container {
  display: flex;
  flex-direction: column; /* or row if you want them side by side */
  align-items: center;
  justify-content: center;
  gap: 20px; /* Space between images */
  width: 100vw; /* Full viewport width */
  padding: 0; /* Remove any padding */
  margin: 0; /* Remove any margin */
}

.gallery-image {
  width: 100%; /* Full width of the container */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Ensure no extra space around the images */
  margin: 0; /* Remove any margin */
}


@media (max-width: 768px) {
  .gallery-container {
      flex-direction: column; /* Stacks images vertically on smaller screens */
  }

  .gallery-image {
      max-width: 100%; /* Ensures the images take up the full width on small screens */
  }
}
for the image and title */
.image-with-title {
    position: relative; /* Enables absolute positioning for the title */
    width: 100%; /* Ensures it takes the full width */
}

/* Style the image */
.image-with-title img {
    width: 100%; /* Full width of the container */
    height: auto; /* Maintain aspect ratio */
  
}

/* Removes any potential spacing between images */
.gallery-image {
  width: 100%; /* Full width of the container */
  margin: 0; /* Remove default margins */
  padding: 0; /* Remove default padding */
  display: block; /* Prevent inline-block spacing issues */
  border: none; /* Ensure no border or outline is adding space */
}

/* Style the title */
.image-title {
    position: absolute; /* Positions the title over the image */
    top: 20px; /* Distance from the top of the image */
    left: 20px; /* Distance from the left of the image */
    color: black; /* Title color */
    font-size: 3em; /* Title font size */
    font-family: "neue-haas-grotesk-display", sans-serif; /* Same font family for consistency */
  }
  .full-page-link {
    display: block; /* Makes the anchor a block-level element */
    position: absolute; /* Position it absolutely within the page */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none; /* Remove underline or other text decoration */
    color: inherit; /* Inherit the color from surrounding text */
  }
  body {
    font-family: "neue-haas-grotesk-display", sans-serif;
  }