:root {
  --background: #eee0d7;
  --fonts: #04384b;
  --accent-bright: #03607e;
  --accent: #48cae4;
  --white: #ffffff;
  --sandy: #e7c9af;
  --red: #8f0707;
}

@font-face {
  font-family: 'GT Super';
  font-display: swap;
}
@font-face {
  font-family: 'GT Super';
  font-weight: 300;
  src: url('/fonts/GT‑Super/GT‑Super‑Display‑Light‑Trial.otf') format('woff2');
}
@font-face {
  font-family: 'GT Super';
  font-weight: 300;
  font-style: italic;
  src: url('/fonts/GT‑Super/GT‑Super‑Display‑Light‑Italic‑Trial.otf') format('woff2');
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  background: var(--background);
  transition: background-color 0.4s ease;
  color: var(--fonts);
}

.navbar {
  opacity: 0;
  transform: translateY(-50px);
  pointer-events: none;
  background-color: rgba(4, 56, 75, 0.9);
    will-change: opacity, transform;
}

.navbar.visible {
    transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.navbar-hidden {
  opacity: 0;
  transform: translateY(-50px);
  pointer-events: none;
}

.container {
  position: relative;
  min-height: 100vh;
  background: var(--background);
  overflow: hidden;
}

.video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
    border-radius: 0;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mask {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  mix-blend-mode: screen;
  z-index: 2;
}
.mask h2,
.mask .kennedy-title {
  font-weight: 100;
  color: #000;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}
/* .mask h2 {
  font-size: clamp(60px, 10vw, 160px);
} */
.mask .kennedy-title {
  font-size: clamp(60px, 10vw, 150px);
  text-align: center;
}
.chirchill-title{
  font-size: clamp(38px, 8vw, 120px);
}

.scroll-down {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid var(--fonts);
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
  z-index: 4;
  pointer-events: none;
  opacity: 1;
}
.scroll-down span {
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--fonts);
  border-radius: 50%;
  animation: scrollBounce 1.8s infinite;
}
@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
  60% { transform: translateY(6px); }
}
.scroll-down-ww2 {
    border: 2px solid var(--background);
}
.scroll-down-ww2 span {
    background-color: var(--background);
}
.collection-caption {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

#collection-text {
  font-family: 'GT Super', serif;
  font-weight: 300;
  font-size: 140px;
  text-align: center;
  color: var(--accent);
  letter-spacing: -5px;
  opacity: 0;
  transform: translateY(20px);
}
.collection-text-p {
  font-family: 'GT Super', serif;
  font-size: 30px;
  font-style: italic;
  color: var(--white);
  margin-top: -20px;
}
  @media (max-width: 768px) {
    .scroll-down {
        bottom: 170px;
    }
    #collection-text{
        font-size: 100px;
    }
    .collection-text-p {
        margin-top: -5px;
    }
  }
/* ===== GALLERY SECTION ===== */
.gallery-words {
  background: var(--background);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--fonts);
  padding: 0 20px 0;
  position: relative;
  z-index: 9999;
}
.gallery-words h3 {
  font-family: 'GT Super', serif;
  font-size: clamp(32px, 6vw, 92px);
  font-weight: 300;
  margin: 0;
}
.gallery-words .blue {
  color: var(--accent-bright);
  font-style: italic;
  font-size: clamp(32px, 6vw, 80px);
  margin-top: -20px;
}
.gallery-words p{
  font-size: 16px;
    font-family: 'Libre Franklin', sans-serif;
  margin: 0 0 40px 0;
    font-weight: 100;
}
.gallery-words .ww2-p{
  margin-top: 30px;
}
.gallery-section {
  padding: 1rem 100px;
  background: var(--background);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.img-wrapper {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  aspect-ratio: 2 / 2.5;
  max-width: 280px;
  max-height: 350px;
  align-self: center;
  position: relative;
}
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out 0.1s, opacity 0.2s ease;
  transform-origin: center center;
  cursor: pointer;
}
.watermark-collections {
  position: absolute;
  bottom: 20px;
  left: 10px;
  font-size: 16px;
  color: rgba(229, 240, 241, 0.5);
  pointer-events: none;
  user-select: none;
  font-family: 'Libre Franklin', sans-serif;
  z-index: 2;
}

.gallery-chapter {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 0 40px;
}
.gallery-chapter-title {
  font-family: 'GT Super', serif;
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 300;
  color: var(--fonts);
  text-align: center;
  position: relative;
}
.gallery-chapter-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 10px auto 0;
}

.chapter-t {
  font-family: 'GT Super', serif;
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 300;
  color: var(--fonts);
  text-align: center;
}

.gallery-chapter-title-war {
    position: relative;
}

.gallery-chapter-title-war::after {
    content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 10px auto 0;
}

.grid-top {
  margin-top: 2%;
}
.gallery-chapter-text {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 18px;
  font-weight: 200;
  color: var(--fonts);
  text-align: center;
  max-width: 900px;
  margin-top: 40px;
  margin-bottom: 2%;
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 60px 0 30px;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 26px;
  font-weight: 200;
  z-index: 10;
  will-change: transform, opacity;
}

.navigational-links {
  position: relative;
  padding: 15px 45px;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  color: var(--accent-bright);
  font-family: 'Libre Franklin', sans-serif;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.4s ease, border 0.4s ease;
}
.navigational-links:hover {
  border-color: transparent;
  background-color: rgba(231, 201, 175, 0.2);
  color: var(--accent);
}
.navigational-links::before,
.navigational-links::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  background: var(--accent-bright);
  transition: width 0.5s ease;
  z-index: 2;
}
.navigational-links::before { top: 0; left: 0; transform-origin: left; }
.navigational-links::after { bottom: 0; right: 0; transform-origin: right; }
.navigational-links:hover::before,
.navigational-links:hover::after {
  width: 100%;
}
/* Vertical borders inside navigational-links */
.navigational-links .v-border {
  position: absolute;
  width: 1px;
  height: 0;
  background: var(--accent-bright);
  transition: height 0.5s ease;
  z-index: 2;
}
.navigational-links .v-left { top: 0; left: 0; transform-origin: top; }
.navigational-links .v-right { bottom: 0; right: 0; transform-origin: bottom; }
.navigational-links:hover .v-left,
.navigational-links:hover .v-right { height: 100%; }

/* Modal styles */
.modal-gallery {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(4, 56, 75, 0.95);
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  z-index: 9999999;
}
.modal-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}
.modal-content {
    display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
  margin: 0 auto;
  background: transparent;
  pointer-events: auto;
}
.modal-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 2.8rem;
  color: var(--white);
  cursor: pointer;
}
.modal-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: transparent;
  border: 0.5px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background-color 0.4s ease, color 0.4s ease;
  pointer-events: none;
  z-index: 5;
}
.modal-btn:hover {
  background-color: rgba(72, 202, 228, 0.2);
}
.modal-btn svg {
  width: 20px;
  height: 20px;
}
#prevBtn { left: 5%; }
#nextBtn { right: 5%; }
@keyframes bounceNext {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
@keyframes bouncePrev {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-4px); }
}
#nextBtn:hover svg { animation: bounceNext 0.5s ease; }
#prevBtn:hover svg { animation: bouncePrev 0.5s ease; }



.modal-close.item-3 {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50px;
  right: 50px;
  cursor: pointer;
  z-index: 10001;
}

.modal-close.item-3::before,
.modal-close.item-3::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 35px;
  background-color: var(--white);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: transform 0.3s ease-out;
}

.modal-close.item-3::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close.item-3:hover::before,
.modal-close.item-3:focus::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

.modal-close.item-3:hover::after,
.modal-close.item-3:focus::after {
  transform: translate(-50%, -50%) rotate(225deg);
}



.swipe-indicator {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-family: 'Libre Franklin', sans-serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
  animation: swipeFade 2.4s infinite;
  z-index: 10;
}
.swipe-arrow {
  font-size: 16px;
  animation: swipeMove 1.2s infinite alternate;
}
@keyframes swipeMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(5px); }
}
@keyframes swipeFade {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
@media (min-width: 769px) {
  .swipe-indicator {
    display: none !important;
  }
}

@media (max-width: 768px) {
  #prevBtn,
  #nextBtn {
    display: none !important;
  }
}
.flip-container {
  perspective: 1200px;
  -webkit-perspective: 1200px;
  position: relative;
  width: 100%;
  height: 100%;
}

.flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 1.2s ease-in-out;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
    will-change: transform;
}

.flip-container.flipped .flip-inner {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

.flip-back {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.flip-front img,
.flip-back img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.flip-hint {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-family: "Libre Franklin", sans-serif;
  font-size: 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.flip-hint.visible {
  opacity: 1;
}

@supports not (transform-style: preserve-3d) {
  .flip-container,
  .flip-inner,
  .flip-front,
  .flip-back {
    display: block !important;
    transform: none !important;
    backface-visibility: visible !important;
  }
}
.modal-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-image-inner {
  position: relative;
  display: inline-block;
}
.modal-content {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}
.modal-watermark {
  position: absolute;
  bottom: 60px;
  left: 16%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  font-family: "Libre Franklin", sans-serif;
  pointer-events: none;
  z-index: 999999;
  user-select: none;
}
/* ===== Modal Responsive Enhancements ===== */
@media (max-width: 768px) {
  .modal-gallery {
    padding: 0;
    background-color: rgba(4, 56, 75, 0.98);
  }

  .modal-content {
    max-width: 100vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .flip-container {
    width: 100vw;
    height: 95vh;
  }
  #prevBtn,
  #nextBtn {
    display: none;
  }
    .modal-close.item-3 {
    top: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
  }

  .modal-close.item-3::before,
  .modal-close.item-3::after {
    width: 28px;
  }
    .flip-hint {
    top: 30px;
    font-size: 14px;
  }
    .modal-watermark {
    font-size: 12px;
    bottom: 50px;
    left: 16%;
  }
}

@media (max-width: 480px) {
  .modal-content {
    max-width: 100vw;
    max-height: 100vh;
    object-fit: cover;
  }
}


.modal-caption {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: var(--fonts);
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Libre Franklin', sans-serif;
  line-height: 20px;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  max-width: 90%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.modal-caption.visible {
  opacity: 1;
}
@media (max-width: 480px) {
  .modal-caption {
    padding: 8px 12px;
    font-size: 12px;
    top: 50px;
    max-width: 90%;
    line-height: 16px;
  }
}



/* Coming Soon */
.coming {
  background: url('/img/gallery/13.webp') center/cover no-repeat;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'GT Super', serif;
  overflow: hidden;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
}
.coming h2 {
  font-weight: 300;
  color: var(--accent);
  font-size: clamp(2rem, 5vw, 76px);
}
.coming h3 {
  font-style: italic;
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 54px);
  font-weight: 100;
  margin-top: -10px;
}
.coming h5 {
  color: var(--white);
  font-size: clamp(1.25rem, 3.5vw, 46px);
  font-weight: 300;
  margin-top: 20px;
}

.glass-wrapper {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 2rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  display: inline-block;
  text-align: center;
  max-width: 90%;
  border-radius: 0;
  opacity: 0;
  transform: scale(0.95);
  animation: glassIn 1s ease-out forwards;
}
@keyframes glassIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ==== Responsive Media Queries ==== */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .mask .kennedy-title {
    font-size: 48px;
  }
  .gallery-section {
    padding: 1rem 30px;
  }
  .gallery-nav {
    margin: 20px 0;
    gap: 8px;
  }
  .gallery-nav-witness{
    flex-direction: column;
  }
  .navigational-links {
    padding: 8px 10px;
    font-size: 9px;
  }
  .gallery-words h3 {
    font-size: 44px;
  }
    .gallery-words{
    padding: 0 30px;
  }
  .gallery-words .blue {
    font-size: 38px;
    margin-top: 5px;
  }
  .gallery-chapter-text{
    font-size: 14px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .glass-wrapper {
    padding: 1.5rem 2rem;
  }
  .coming {
  background: url('/img/gallery/photo-output\ 5.jpeg') center/cover no-repeat;
}
}

@media (max-width: 480px) {
  .glass-wrapper {
    padding: 1.2rem 1.5rem;
  }
}


/* WORLD WAR 2 */

.wwii-section {
  background-color: var(--background);
  padding: 10vw 10vw 4vw;
  font-family: 'GT Super', serif;
}

.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 30px;
}

.grid-item {
  position: relative;
  overflow: hidden;
  color: var(--fonts);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease;
  z-index: 0;
  text-decoration: none;
}
.grid-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    var(--bg-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: 
    transform 0.4s ease, 
    background-color 0.3s ease,
    background-image 0.4s ease;
  z-index: -1;
}

.grid-item:hover::before {
  transform: scale(1.1);
  background-image: var(--bg-img);
}

.grid-item span {
  z-index: 1;
  padding: 1rem;
  color: white;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 200;
  transition: transform 0.3s ease;
  will-change: transform;
}

.grid-item:hover span {
  transform: scale(.95);
}
.ww-text {
  display: flex;
  flex-direction: column;
}
.ww-text h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(34px, 4vw, 52px);
  pointer-events: none;
  color: var(--fonts);
}
#ww2-text p{
  font-style: italic;
  color: var(--accent-bright);
    font-size: clamp(24px, 3vw, 32px);
}

.block1 {
  grid-row: 1 / span 2;
  grid-column: 1;
    --bg-img: url('/img/WW2/1.webp');
}

.block2 {
  grid-row: 1;
  grid-column: 2 / span 2;
  --bg-img: url('/img/WW2/2.webp');
}

.block3 {
  grid-row: 2 / span 2;
  grid-column: 3;
    --bg-img: url('/img/WW2/3.webp');
}

.block4 {
  grid-row: 3;
  grid-column: 1 / span 2;
  --bg-img: url('/img/WW2/4.webp');
}

#ww2-text {
  grid-row: 2;
  grid-column: 2;
}


/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .grid-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 20px;
  }

  .grid-item {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 200px;
  }

  .ww-text {
    order: -1;
    background: none;
    padding: 100px 0 30px 0;
    height: auto;
  }
  .block1 {
    --bg-img: url('/img/WW2/1-sm.webp');
  }
  .block2{
        --bg-img: url('/img/WW2/2.webp');
  }
  .block3 {
    --bg-img: url('/img/WW2/3-sm.webp');
  } 
    .block4 {
    --bg-img: url('/img/WW2/4.webp');
  } 
}


/* PROPAGANDA */

.hero-ww2 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-position: center;
  background-size: cover;
  background-image: url(/img/WW2/hero.webp);
  background-repeat: no-repeat;
}
#theWitness{
  background-image: url(/img/WW2/Witness/Eichmann/Photo5_result\ copy-min.webp);
}
#occupation {
  background-image: url(/img//WW2/occupation/eichmann/Photo130_result\ copy-min.webp);
}
#ashes{
  background-image: url(/img/WW2/Ashes/Victims/Photo\ 242_result\ copy-min.webp);
}
#ww2-hero-titile{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  font-size: clamp(28px, 5vw, 50px);
    position: relative; 
  z-index: 2;
}
#ww2-hero-titile h2{
    font-weight: 100;
  font-family: 'GT Super', serif;
}
#ww2-hero-titile p{
  font-size: clamp(14px, 2vw, 16px);
    font-family: "Libre Franklin", sans-serif;
    font-weight: 100;
    margin-top: 25px;
}
#ww2-hero-titile .big-p{
    font-size: clamp(18px, 3vw, 22px);
    max-width: 900px;
    font-family: 'GT Super', serif;
    letter-spacing: 0.5px;
}


.breadcrumb {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 18px;
  padding: 20px 5px;
  color: var(--fonts);
  background-color: var(--background);
  text-align: center;
}

.breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
    justify-content: center;
}

.breadcrumb li::after {
  content: ">";
  margin: 0 8px;
  color: var(--accent);
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb a {
  text-decoration: none;
  color: var(--accent-bright);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--accent);
}




@media (max-width: 768px) {
  #ww2-hero-titile p{
    max-width: 400px;
  }
  .hero-ww2 {
  background-image: url(/img/WW2/photo-output\ 5.webp);
}
#theWitness{
  background-image: url(/img/WW2/Witness/photo-output\ 7.webp);
}
#occupation {
  background-image: url(/img//WW2/occupation/photo-output\ 6.webp);
}
#ashes{
  background-image: url(/img/WW2/Ashes/photo-output\ 5\ copy.webp);
}
}