#subpage-wrap {
  padding-top: 64px;
}

#home-link {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  max-width: 900px;
}

#eye-graphic {
  width: 25%;
}

#logo {
  width: 75%;
  margin-bottom: 0;
}

#background-graphics {
  position: absolute;
  inset: 0;
  pointer-events: none;
  contain: strict;

  #fig-26 {
    position: absolute;
    top: -15%;
    left: -5%;
    width: 25vw;
    opacity: 0.4;
  }

  #fig-16 {
    position: absolute;
    bottom: -5%;
    right: -5%;
    width: 40vw;
    opacity: 0.4;
  }
}

#about-paras {
  position: relative;
  z-index: 1;
  margin-block: auto;
  font-size: clamp(16px, 1.5vw, 20px);
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  padding-bottom: 8em;
}

@keyframes dancers-wiggle {
  0% {
    transform: rotate(-10deg) scaleX(1);
  }
  12% {
    transform: rotate(8deg) scaleX(1);
  }
  24% {
    transform: rotate(-14deg) scaleX(-1);
  }
  36% {
    transform: rotate(6deg) scaleX(-1);
  }
  48% {
    transform: rotate(-8deg) scaleX(1);
  }
  60% {
    transform: rotate(12deg) scaleX(1);
  }
  72% {
    transform: rotate(-11deg) scaleX(-1);
  }
  84% {
    transform: rotate(7deg) scaleX(-1);
  }
  96% {
    transform: rotate(-9deg) scaleX(1);
  }
  100% {
    transform: rotate(-10deg) scaleX(1);
  }
}

#background-graphics {
  #dancers {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28vw;
    opacity: 0.5;
    transform-origin: bottom center;
    /* animation: dancers-wiggle 4.5s steps(1) infinite; */
  }
}

@media (max-width: 767px) {
  #background-graphics {
    #fig-16 {
      position: absolute;
      bottom: -5%;
      right: -5%;
      width: 80vw;
      opacity: 0.4;
    }
  }
}
