:root {
  --text: #eee;  
  --bg: #3e4e29;
  --accent: #ff8432;
}

body {
  align-items: center;
  /*background: #f8f5d7;*/
  /*background: #d7daf8;*/
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  font-family: Vollkorn, Georgia, serif;
  margin: 0;
  padding: 0;
}

nav {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 100%;
  padding: 16px 8px;
  width: 1280px;
}

.site-title {
  font-weight: bold;
  font-size: 1.2em;
  color: var(--text);
}

.menu a {
  color: var(--text);
  font-weight: normal;
  padding: 4px 8px;
  text-decoration: none;
}

  .menu a:hover {
    color: var(--accent);
  }

.menu a[disabled] {
  /*background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  color: #5a5e8e;*/
  text-decoration: wavy underline;
  pointer-events: none;
}

main {
  box-sizing: border-box;
  max-width: 100%;
  padding: 8px;
}

img {
  border-radius: 8px;
  box-shadow: 0 2px 2px rgba(0,0,0,0.2);
  width: 100%;
}

a {
  color: var(--accent);
  font-weight: bold;
}

.gallery {
  line-height: 0;
  column-count: 3;
  column-gap: 16px;
}

.gallery span {
  width: 100% !important;
  height: auto !important;
}

.gallery img {
  margin-bottom: 16px;
}

@media (max-width: 800px) {
  .gallery {
    column-count: 2;
  }
}

@media (max-width: 400px) {
  .gallery {
    column-count: 1;
  }
}

section {
  box-sizing: border-box;
  max-width: 640px;
}
