#popup {
  position: absolute;
  bottom: -40svh;
  background-color: #ba0c2f;
  height: 40svh;
  width: 100svw;
  transition: bottom 0.5s ease-in-out;
  z-index: 2;
}

#popup > #popup-box {
  position: absolute;
  top: 0;
  height: 5svh;
  width: 100svw;
  background-color: #ba0c2f;
}

#popup > #popup-box svg {
  position: absolute;
  height: 3svh;
  top: 2svh;
  right: 1svh;
}

#popup > #popup-buttons {
  position: absolute;
  top: 8svh;
  height: 70%;
  width: 100svw;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 3svh;
}

#popup > #popup-buttons > [id^="popup-button"] {
  width: 40svw;
  height: 7svh;
  border: none;
  color: var(--osuRed);
  font-family: "BuckeyeSans2" !important;
  font-size: 2svh;
  font-weight: 900;
  border: 0.33svh solid var(--osuRed);
}

#popup > #popup-buttons > #popup-button-brutus {
  background-color: #ba0c2f;
  color: #fff;
  border: 0.33svh solid #fff;
}

@media (min-aspect-ratio: 2/3) {
  #popup > #popup-buttons {
    flex-direction: row;
    justify-content: space-evenly;
  }
  #popup > #popup-buttons > [id^="popup-button"] {
    width: 25svw;
    height: 8svw;
    font-size: 2svw;
    font-weight: 900;
  }
}
