@font-face {
    font-family: Archive;
    src: url(Signatie.otf);
}

a,
a:visited,
a:hover,
a:active,
a:focus {
    color: rgb(157, 157, 157);
}


h1{
    font-family: "Archive";
     font-size: clamp(2rem, 7vw, 4rem);
    margin: 50px 0 30px;
    text-align: center;
    color: rgb(102, 103, 104);
    text-shadow: 2px 0 #000000, -2px 0 #000000, 0 2px #000000, 0 -2px #000000,
               1px 1px #000000, -1px -1px #000000, 1px -1px #000000, -1px 1px #000000;
               filter: url(#wither);
}

 body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('MyPicks/CurtainStill.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: black; /* fallback */
    z-index: -1;
    pointer-events: none; /* allows clicks to pass through */
  }

   p{
    font-weight: 40;
  text-shadow:
    1px 1px 2px rgba(0, 0, 0, 0.6),
    -1px 0px 3px rgba(60, 50, 30, 0.4),
    0px 2px 6px rgba(0, 0, 0, 0.3);
  font-size: 2rem;
  margin: 0px 100px 20px;
  text-align: center;
  color: rgb(102, 103, 104);
  filter: url(#wither);
  }

  .image-row {
  display: flex;
    gap: 10px;
    justify-content: center;     
}

.image-item img {
  width: 80%;
  height: auto;
  display: block;
  margin-left: 10%;
}

.image-item {
  flex: 1;           
}

.image-item2 img {
  width: 30%;
  height: auto;
  display: block;
  margin-left: 36%;
}




.slideshow {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.slideshow-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
}

.slideshow-track::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.slide-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.slide-dots span.active {
  background: #555;
}