body.musicPageActive,
body.musicPageActive main,
body.musicPageActive #pageContainer {
  background: rgb(249, 233, 213);
}
body.textsPageActive,
body.textsPageActive main,
body.textsPageActive #pageContainer {
  background: rgb(238, 97, 97);
}
body.videoPageActive,
body.videoPageActive main,
body.videoPageActive #pageContainer {
  background: rgb(250, 218, 124);
}
body.aboutPageActive,
body.aboutPageActive main,
body.aboutPageActive #pageContainer {
  background: rgb(69, 69, 69);
}
body.artPageActive,
body.artPageActive main,
body.artPageActive #pageContainer {
  background: rgb(164, 219, 144);
}
body.performPageActive,
body.performPageActive main,
body.performPageActive #pageContainer {
  background: rgb(69, 69, 69);
}
body.supportPageActive,
body.supportPageActive main,
body.supprtPageActive #pageContainer {
  background: rgb(69, 69, 69);
}
body.exhibitPageActive,
body.exhibitPageActive main,
body.exhibitPageActive #pageContainer {
  background: rgb(69, 69, 69);
}

body {
  /* position: relative; */
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr min-content;
  /* background-image: url(../img/redbg.webp); */
  background-size: cover;
  overflow-x: clip;
  background-color: rgb(32, 28, 24);
}
main {
  /* background-image: url(../img/redbg.webp); */
  width: clamp(200px, 80vw, 1050px);
  margin: 0 auto;
}
header {
  background-color: rgb(32, 28, 24);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.subpageHeader #headerTitle {
  font-size: 1.7rem;
  letter-spacing: 1.2vw;
}
header p {
  font-size: 3rem;
  line-height: 1.5;
  font-family: var(--footerMenu);
  text-align: center;
  letter-spacing: 1.6vw;
  color: rgb(223, 225, 209);
}
footer {
  position: relative;
  background-color: rgb(143, 178, 178);
  font-family: var(--footerMenu);
  height: min-content;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 1rem; */
  padding: 10px 0.5rem;
  opacity: 0;
  transition: all 0.3s;
}

footer > nav {
  display: flex;
  justify-content: center;
}
footer nav:not(footer > nav:last-child) {
  border-right: 1px solid #0008;
}
footer > nav > ul {
  list-style: none;
}
footer a,
.footerPopoverBtn {
  color: #0009;
  text-decoration: none;
}

footer a:hover,
.footerPopoverBtn:hover {
  color: #000;
}
.footerPopoverBtn {
  background: none;
  border: none;
  padding: 0;

  color: #0009;
  font: inherit;
  text-align: left;

  font-family: var(--footerMenu);
  font-size: 0.7rem;

  cursor: pointer;
}

footer > nav > ul > li {
  font-family: var(--footerMenu);
  font-size: 0.8em;
}

#footerInfo {
  position: fixed;
  height: 300px;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(100%);
  transition: transform 600ms ease;

  background: rgba(50, 50, 50, 0.95);
  color: rgb(237, 237, 237);
  z-index: 1000;

  font-family: var(--basefont);
  padding: 0 1rem;
  h2 {
    font-size: 1.4rem;
    margin: 0.5rem 0;
  }
  p {
    font-size: 0.8rem;
    margin: 0.3rem 0;
  }
  a {
    color: rgb(237, 237, 237);
  }
}
#footerInfo.open {
  transform: translateY(0);
}

body:has(.subpageHeader) footer {
  visibility: hidden;
}

.disclaimer {
  position: absolute;
  bottom: 6%;
  left: 6%;
  color: aliceblue;
  font-size: 1rem;
  font-family: Abel;
  width: 32ch;
  background-color: rgba(242, 238, 223, 0.6);
  padding: 1rem;
}
