body {
    background-color: #dad7cd;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 300 !important;
}

.container-xxl {
  max-width: 1600px;
}

.bg-titlebar {
    background: #A3B18A;
}

.btn-primary {
    background: #C65A3A;
    border: #C65A3A;
}

.btn-primary:hover {
    background: #a34b31;
    border: #a34b31;
}

.bg-system-green {
    background: #A3B18A;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  align-items: start;
}

.tiny-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
  gap: 10px;
  align-items: start;
}

.tiny-grid > .item > img {
  cursor: pointer;
}

.item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.item img {
  width: 100%;
  height: auto;
  display: block;
  transition: all .25s;
  box-sizing: border-box;
}

.archive-grid>div img:hover {
  transition: all .25s;
  transform: scale(1.05, 1.05);
}

.tiny-grid>div img:hover {
  transition: all .25s;
  transform: scale(1.15, 1.15);
}

.active-image {
  box-shadow: 0 0 0 5px black;
}


.meta {
  margin-top: auto; /* pushes meta to bottom of tallest item */
  text-align: center;
}

.title {
  margin-top: 8px;
}

.pill {
  margin-top: 4px;
  display: inline-block;
}

.archive-image {
  width: 100%;
  height: auto;
  transform: scale(1.00, 1.00);
}

.back-button {
color: #3a5a40;
  display: inline-block;
  cursor: pointer;
  transition: all .25s;
}

.back-button:hover {
  transition: all .25s;
  transform: scale(1.10, 1.10);
  color: #344e41;
}

.text-xs {
  font-size: 0.75rem;
}