.header-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 13vw;
  background: inherit;
  z-index: 9;
}

.header-imgs > * {
  position: fixed;
  transition-duration: 0.4s;
  z-index: 10;
}

.header-imgs {
  --value: (min(max(var(--scroll), 6), 6.1) - 6) / 0.1;
}

.header-imgs .logo {
  width: calc(20vw - 10vw * var(--value));
  top: calc(
    50vh - 49vh * var(--value) - (1 - var(--value)) / 1.25 *
      (25vw - 15vw * var(--value))
  );
}

.header-imgs .left {
  left: calc(40vw - 30vw * var(--value));
}

.header-imgs .right {
  right: calc(40vw - 30vw * var(--value));
}

.header-imgs .lazarus {
  width: 55vw;
  top: calc(55vh - 53vh * var(--value));
  left: 22.5vw;
}


.up-0 {
  --value: 1vh * (min(max(var(--scroll), 6), 6.1) - 6) / 0.1;
  position: relative;
  top: calc(80vh - 80 * var(--value));
  transition-duration: 0.4s;
  z-index: 5;
}

.up-1 {
  --value: 1vh * (min(max(var(--scroll), 6), 6.1) - 6) / 0.1;
  position: relative;
  top: calc(20vh - 20 * var(--value));
  transition-duration: 0.4s;
  z-index: 5;
}

.nav {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 8;
  margin: 20px;
}

.navitem {
  text-decoration: none;
  font-size: 45px;
  text-align: center;
  color: var(--secondary-accent);
  text-shadow: 0 0 5px var(--accent-color);
  padding: 10px;
  display: block;
}

.footer {
  display: block;
  margin: 0 auto;
  padding: 2px;
  width: 100%;
  text-align: right;
}

.footer a {
  color: var(--accent-color);
  text-shadow: 0 0 1px var(--accent-color);
  font-size: 8px;
  text-decoration: none;

}


@media (min-width: 320px) and (max-width: 912px) {
  .header {
    height: 15vw;
  }

  .header-imgs .logo {
    width: calc(45vw - 35vw * var(--value));
    top: calc(
      47vh - 46vh * var(--value) - (1 - var(--value)) / 1.25 *
        (50vw - 40vw * var(--value))
    );
  }

  .header-imgs .left {
    left: calc(27.5vw - 24vw * var(--value));
  }

  .header-imgs .right {
    right: calc(27.5vw - 24vw * var(--value));
  }

  .header-imgs .lazarus {
    width: 70vw;
    top: calc(60vh - 58vh * var(--value));
    left: 15vw;
  }

  .nav {
    align-items: center;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    --value: 1vh * (min(max(var(--scroll), 6), 6.1) - 6) / 0.1;
    position: relative;
    top: calc(60vh - 60 * var(--value));
    transition-duration: 0.4s;
    z-index: 5;
  }

  .navitem {
    display: inline-block;
    font-size: 50px;
  }

  #ticketNav {
    display: none;
  }
}
