<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">main, footer {
  max-width: 60em;
  width: calc(100% - 2em);
}

#filters {
  width: 100%;
  margin-bottom: 2em;
}

#pictures {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20em, 1fr));
  grid-gap: 1em;
}
#pictures img {
  width: 100%;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}
#pictures li {
  position: relative;
  text-align: center;
}
#pictures .meta {
  font-size: small;
  color: grey;
}
#pictures .linksurface {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}</pre></body></html>