.section{
  width: 50%;
  height: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 15px;
}
.section_rps{
  width: 100%;
  position: relative;
  height: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section_title{
  width: 100%;
  text-align: center;
  display: none;
  background-color: var(--accent);
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
}
.section_rps-game{
  width: 90vw;
  height: 40vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* border: 1px solid var(--dark-primary); */
  border-radius: 5px;
  /* padding: 5px 10px; */
  margin-bottom: 20px;
}
.rps_img{
  width: 200px;
  margin: 0 30px;
}
.rps_game-right{
  rotate: -90deg;
}
.rps_game-left{
  rotate: 90deg;
}
.rockpeperstone{
  margin: 2px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.rockpeperstone_img{
  width: 50px;
  height: 50px;
}


@media (max-width: 900px) {
  body{
    height: max-content !important;
  }
.section {
  width: 50%;
}
}

@media (max-width: 550px) {
.section {
  width: 70%;
}
.rps_img{
  width: 120px;
}
}

@media (max-width: 350px) {
.rps_img{
  width: 100px;
}
}