#move {
  position: absolute;
  width: 100svw;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.5s ease-in-out;
  z-index: 1;
  top: 0;
}

#move > [id^="move-container"] {
  position: absolute;
  margin: auto;
  width: 100svw;
  right: 0svw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.5s;
}

#move #move-container-2 {
  right: -100svw;
}

#move img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#move 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) {
    #move h1 {
        font-size: 5svh;
    }
    #move ul {
        font-size: 5svh;
    }
    #move button {
        font-size: 3svh;
    }
}

@media screen and (max-aspect-ratio: 4/5) {
  #move h1 {
    font-size: 5svh;
  }
  
}

