/*Image gallery section */
.gallery-container {
  display: flex;
  max-width: 100%;
  flex-flow: row wrap;
  justify-content: center;
  gap: 1em;
  list-style: none;
  padding-left: 0;
}

.gallery-container > li {
  height: 14em;
  width: 18em;
}

.gallery-container > li > img{
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.gallery-container > li > img:hover{
  box-shadow: 2px 2px 8px oklab(52.171% -0.01863 -0.11522 / 0.361), -2px -2px 8px oklab(52.171% -0.01863 -0.11522 / 0.361);
  cursor: pointer;
}
/* Lightbox section */
#lightbox {
  display: none;
}
.lightbox-backdrop {  
  background: oklab(42.013% -0.00611 -0.07068 / 0.719) ;
  width: 100%;
  height: 100%;
  position: fixed; 
  top: 0; 
  left: 0;
}
.lightboxSlides {
  max-width: 100vw;
  max-height: 100vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.left-lightbox-pointer {
  position: fixed;
  font-size: 200%;
  background: oklab(89.492% -0.00793 -0.01531 / 0.295);
  border-radius: 2em;
  padding: 0.5em 0.4em 0.6em 0.3em;
  top: 50%;
  left: 10%;
}
.right-lightbox-pointer {
  position: fixed;
  font-size: 200%;
  background: oklab(89.492% -0.00793 -0.01531 / 0.295);
  border-radius: 2em;
  padding: 0.5em 0.3em 0.6em 0.4em;
  top: 50%;
  left: 90%;
}

.left-lightbox-pointer:hover, .right-lightbox-pointer:hover {
  background: oklab(89.492% -0.00793 -0.01531 / 0.582);
  cursor: pointer;
}
/* General */
body {
  background: oklab(88.362% 0.00443 -0.04028);
  font-family: sans;
  margin: 0;
}
main {
  margin: 1em;
}
footer {
  background: oklab(43.944% 0.00109 -0.06959);
  color: oklab(100% 0 0);
  padding: 1em;
  text-align: right;
}
footer a {
  color: oklab(95.005% -0.02803 -0.01548);
}