@import url("https://fonts.googleapis.com/css2?family=Playwrite+NL:wght@100..400&display=swap");
header {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}
@media (max-width: 600px) {
  header {
    height: 13vh;
  }
}
header h1 {
  margin: 0;
  margin-top: -1vh;
  margin-bottom: 5vh;
  padding: 0;
  font-style: normal;
  font-weight: 300;
  font-family: "Playwrite NL", cursive;
  font-optical-sizing: auto;
  font-size: 5vh;
  text-align: center;
}

body {
  margin: 0 10vw;
  scroll-behavior: smooth;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
@media (max-width: 600px) {
  body {
    margin: 1rem;
  }
}

#image_grid {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  -moz-column-count: 4;
       column-count: 4;
}
@media (max-width: 600px) {
  #image_grid {
    -moz-column-count: 2;
         column-count: 2;
  }
}
#image_grid figure {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  transition: 300ms;
  margin: 0;
  margin-bottom: 1rem;
  padding: 0;
}
#image_grid figure img {
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  border-radius: 5px;
  width: 100%;
}
#image_grid figure img.loaded {
  opacity: 1;
  transition: opacity 300ms ease-in-out;
}
#image_grid figure figcaption {
  transition: 300ms;
  margin: 0;
  padding: 0 0.5rem;
}/*# sourceMappingURL=style.css.map */