* {
  box-sizing: border-box;
}

body {
  background: url(/static/ironlands/inner_bay.jpg) no-repeat center center fixed;
  background-size: cover;
}

div.container {
  background-color: #000;
  opacity: 0.85;
  margin: 0 auto;
  max-width: 1200px;
  width: 95%;
  border-radius: 15px;
  color: #fff;
  font-size: 16pt;
  font-family: 'EB Garamond', serif;
  display: flex;
  flex-direction: column;
}

.tabContainer {
  display: flex;
  flex-direction: column;
}

.input {
  position: absolute;
  opacity: 0;
}

.label {
  width: 100%;
  text-decoration: underline;
  cursor: pointer;
  padding: 10px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-style: italic;
}

.label:hover {
  background: #111;
}

.label:active {
  background: #222;
}

.input:checked + .label {
  background: #333;
}

@media (min-width: 825px) {
  .label {
    width: auto;
    grid-column: 1;
    border-top-right-radius: 0px;
  }

  .page {
    order: 99;
    grid-column: 2;
    grid-row-start: 1;
    grid-row-end: span last-line;
  }

  .tabContainer {
    display: grid;
    grid-template-columns: 15% 85%;
    grid-template-rows: 2em 2em 2em 2em 2em 2em 2em 2em auto [last-line];
  }
}

.page {
  padding: 3% 3%;
  display: none;
}

.input:checked + .label + .page {
  display: block;
}

.tabPageHeading {
  display: none;
}

div.voiceover {
  font-style: italic;
}

div.gallery {
  display: flex;
  flex-wrap: wrap;
}

p.exhibit-title {
  font-weight: 700;
}

p.license-text {
  font-style: italic;
  font-size: small;
  padding-left: 18px;
}

img.exhibit-img {
  height: 120px;
  display: block;
  margin: 0 auto;
}

div.exhibit {
  width: 30%;
  margin: 0 auto;
  min-width: 200px;
}

div.separator {
  width: 80%;
  margin: 20px auto;
  border-top: 2px solid #fff;
}

a:link, a:visited, a:focus, a:hover, a:active {
  color: #fff;
}

img.world-map {
  width: 100%;
}

h2 {
  margin-top: 0px;
}