body {
  font-family: Termina, sans-serif;
  color: #111;
  background: #eee;
  overflow-x: hidden;
}

section {
  padding: 10vw;
  height: 100%;
  min-height: 500vh;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: visible;
}

.credit {
  text-align: center;
  z-index: 999;
  font-size: 0.8rem;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.credit a {
  color: #fff;
}

* {
  box-sizing: border-box;
}
p {
  font-weight: 800;
  margin: 2rem auto;
  font-size: clamp(3vw, 2rem, 4rem);
  text-align: center;
  z-index: 999;
  max-width: 800px;
  mix-blend-mode: difference;
  pointer-events: none;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
}

#demo {
  background-color: rgba(157, 128, 128, 0.363);  
  position: fixed;
  width: 4rem;
  height: 5rem;
  z-index: 999999;
  left: 0rem;
  top: 0rem;
}



.gallery {
  z-index: 1;
  display: flex;
  padding: 0rem 1rem;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: visible;
}
@media (max-width: 768px) {
  .gallery {
    width: 160%;
  }
}

.col {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  align-self: flex-start;
  justify-self: flex-start;
}

.col:nth-child(2) {
  align-self: flex-end;
  justify-self: flex-end;
}


.image {
  width: 31vw;
  height: 80vh;
  margin-left: 50%;
  transform: translateX(-50%);
  display: flex;
  overflow: hidden;
  filter: saturate(0);
  padding: 0.8rem;
  justify-content: space-evenly;

}



.image:hover {
  z-index: 99999999999 !important;
  filter: saturate(1);
}

img {
  transition: 0.3s ease-out;
  height: 100%;
}

@keyframes ful { 100% { width: 100vw; height: 100vh;  left: 0; top: 0; } }
