@font-face {
  font-family: "Runy Tunes";
  src: url("/font/runytunesrevisited.regular.otf");
}

:root {
  --tt-purple-1: #0f0924;
  --tt-black-1: #000000;
  --tt-white-1: #ffffff;
  --tt-gray-1: #727272;
}

html,
body {
  background-color: var(--tt-purple-1);
  margin: 0;
  color: var(--tt-white-1);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1,
h2 {
  font-family: "Runy Tunes";
}

img {
  filter: grayscale();
}

.header__row {
  width: 100%;
}

.header__menu-btn {
  position: fixed;
  display: flex;
  width: auto;
  height: 4em;
  right: 20px;
  top: 20px;
  z-index: 25;
  visibility: hidden;
  cursor: pointer;
}

.header__links {
  background-image: url("/media/images/tyburn-seeno-hearno-speakno.jpg");
  background-position: center;
  display: flex;
  overflow: hidden;
  justify-content: space-around;
  align-items: center;
  position: sticky;
  top: 0;
  transition: max-height 150ms;
  z-index: 20;
}

.header__link-button {
  display: flex;
  padding: 10px;
  border-left: solid var(--tt-gray-1) 1px;
  border-right: solid var(--tt-gray-1) 1px;
  text-decoration: none;
  font-size: 1.5em;
  height: 2em;
  gap: 0.5em;
}

.header__link-icon {
  height: 50%;
  margin-top: auto;
  margin-bottom: auto;
}

.header__link-text {
  color: var(--tt-white-1);
  align-content: center;
  font-family: "Runy Tunes";
  pointer-events: none;
}

.header__logo-container {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
}

.header__logo {
  height: 100px;
  object-fit: contain;
  z-index: 10;
  margin-left: 10em;
  margin-top: 1vw;
}

.header__banner-container {
  overflow-x: clip;
  width: 100%;
  display: flex;
  justify-content: center;
}

.header__banner {
  display: block;
  flex: 1 0 auto;
}

.mainbody {
  background-color: var(--tt-black-1);
  flex: 1 0 auto;
  text-align: center;
}

.mainbody__content {
  width: 70vw;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  display: flex;
  justify-content: space-around;
  width: 70vw;
  margin-left: auto;
  margin-right: auto;
}

.footer__item {
  margin: 10px;
}

.image-gallery {
  line-height: 28px;
  column-count: 2;
  column-gap: 8px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.image-gallery__image {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1100px) {
  .header__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .header__menu-btn {
    visibility: visible;
  }

  .header__links {
    flex-direction: column;
    max-height: 0;
    background-size: cover;
  }

  .header__links--revealed {
    max-height: 500px;
  }

  .image-gallery {
    column-count: 1;
  }
}
