<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* Some very basic styles... You should likely overwrite these with your own to suit your needs */

/* Responsive Images */

.photo-albums img,
.photo-items img {
  height: auto;
  max-width: 100%;
}

/* Photo Albums */

.photo-albums {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(5, minmax(100px, 1fr));
}

/* Photo Items */

.photo-items {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(5, minmax(100px, 1fr));
  margin-bottom: 60px;
}
</pre></body></html>