#overlay {
  position: absolute;
  width: 100svw;
  height: 30svh;
  bottom: -30svh;
  transition: bottom 0.5s ease-in-out;
  z-index: 1;
}
#overlay > #overlay-container {
  position: absolute;
  width: 100svw;
  height: 30svh;
  bottom: 0svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4svh;
}
#overlay > #overlay-container > [id^="button-"] {
  font-size: 4svw;
  font-family: "BuckeyeSans2";
  font-weight: 800;
  color: white;
  background-color: var(--osuRed);
  padding: 1vh 5vw;
  border-radius: 10px;
  border: 2px solid white;
}
@media screen and (min-aspect-ratio: 4/5) {
  #overlay > #overlay-container > [id^="button-"] {
    font-size: 4svh;
  }
}
#overlay > #overlay-container > #button-back {
  position: absolute;
  right: 5vw;
  height: 7svh;
  width: 7svh;
  bottom: 5vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 5svh;
  padding: 0;
}
#overlay > #overlay-container > #button-back > p {
  display: none;
}
#overlay > #overlay-container > #button-back > svg {
  height: 80%;
  width: 80%;
}

@media (min-aspect-ratio: 1/1) {

}
