:root {
  --hero-bg-color: rgb(37 29 93);
  --hero-bg-color-raw: 37 29 93;
  --hero-overlay-opacity: 0.6;
  --override-primary: rgb(243 95 117);
  --override-primary-raw: 243 95 117;
  --credit-color: rgb(180 180 180);
  --credit-link-color: rgb(229 229 229);
  --topfooter-bg-color: #efefef;
  --bottomfooter-bg-color: #161616;
}

#topnav {
  box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.05);
}

#hero {
  background: var(--hero-bg-color) url(/site/images/texture.jpg) no-repeat center center;
  padding-block: 7rem;
}
#hero .overlay {
  background-color: rgb(var(--hero-bg-color-raw) / var(--hero-overlay-opacity));
}
.summary p {
  margin-bottom: 1rem;
}
.summary.topsummary p {
  margin-bottom: 0;
}
.summary a {
  color: var(--override-primary);
  font-weight: normal;
}
.summary a:hover {
  text-decoration: underline;
}

.summary hr {
  margin-block: 1rem;
}

img.align_center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.align_right {
  float: right;
  margin: 0.5rem 0 0.5rem 0.5rem;
  background: white;
  padding: 0.25rem;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
}

.topfooter {
  background-color: var(--topfooter-bg-color);
}
.topfooter .footerquote p,
.topfooter .footerquote blockquote {
  font-style: italic;
  font-size: larger;
}
.bottomfooter {
  background-color: var(--bottomfooter-bg-color);
}

.credits {
  color: var(--credit-color);
}
.credits a {
  color: var(--credit-link-color);
}

.m-auto {
  margin: auto;
}
.ml-auto {
  margin-left: auto;
}
.text-right {
  text-align: right;
}

.artwork-item {
  border: 1px solid #e1e1e1;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.col-span-2 {
  grid-column: span 2;
}

.bottomfooter .sep {
  display: none;
}
.bottomfooter .credits {
  display: block;
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .lg\:col-span-2 {
    grid-column: span 2 !important;
  }
  .lg\:text-left {
    text-align: left !important;
  }
  .lg\:text-right {
    text-align: right !important;
  }
  .bottomfooter .sep {
    display: inline;
  }
  .bottomfooter .credits {
    display: inline;
  }
}
