:root {
  --bg: #fffcf7;
  --fg: #111111;
  --muted: #555;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0 10px;
  background: var(--bg);
  color: var(--fg);
  font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
  font-size: 19px;
  line-height: 1.5;
}

.sitehead {
  max-width: 700px;
  margin: 40px auto 28.5px;
}

.main {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 0 40px;
}

.masonry {
  display: flex;
  gap: 18px;
}

.masonry-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.masonry a {
  display: block;
}

.masonry img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}

.sentinel {
  height: 1px;
}

.viewer img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}

.viewer .source {
  margin: 18px 0 0;
  color: var(--muted);
}

.viewer .source a {
  color: inherit;
  text-decoration: underline;
}

/* Similar-images grid below the main image on /image/:id pages. */
.viewer + .masonry {
  margin-top: 20px;
}

.sitehead .crumb {
  margin: 0 0 19px;
  color: var(--fg);
}

.sitehead h1 {
  font-size: 28.5px;
  line-height: 24.7px;
  font-weight: 700;
  margin: 0 0 19px;
}

.sitehead p {
  margin: 0 0 19px;
  color: var(--muted);
}

.sitehead a {
  color: inherit;
  text-decoration: underline;
}

.sitehead a.current {
  color: var(--muted);
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}
