nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #6b7280;
  margin-bottom: 32px;
  padding-bottom: 16px;
}
nav h1 a {
  font-weight: bold;
  font-size: 2rem;
}
nav a.current {
  border-bottom: 2px solid #111827;
  padding-bottom: 3px;
}

form#filters select {
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.people-list {
  border-bottom: 1px solid rgba(107, 114, 128, 0.5);
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 10px;
}
.people-list a {
  margin: 0 10px 10px 0;
}

.section {
  margin: 40px 0;
}

.image-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
}
@media (min-width: 640px) {
  .image-gallery {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.image-gallery img {
  border: 5px solid #fff;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  margin: 0;
}

.gdownload {
  background-color: rgba(0, 0, 0, 0.32);
  background-image: url(/images/download.svg?3237ea9d1ac361e610fff92c4c06423c);
  background-repeat: no-repeat;
  background-position: center;
  color: transparent;
  position: absolute;
  top: 15px;
  right: 60px;
  height: 35px;
  width: 35px;
  overflow: hidden;
  text-indent: -99999px;
}
