body {
  background-color: rgb(25, 25, 25);
  color: white;
  font-family: Arial;
}
.rps-text {
  font-size: 30px;
  font-weight: bold;
}
.move-icon {
  height: 50px;
}
.move-result {
  background-color: transparent;
  width: 120px;
  height: 120px;
  border: 3px solid white;
  border-radius: 60px;
  margin-right: 10px;
  cursor: pointer;
}
.reset-icon,
.auto-icon {
  cursor: pointer;
  padding: 8px 15px;
  border: none;
  font-size: 15px;
  background-color: rgb(255, 255, 255);
}

.result {
  font-size: 25px;
  font-weight: bold;
  margin-top: 50px;
}
.score {
  margin-top: 60px;
}
@media (max-width: 600px) {
  .move-result {
    background-color: transparent;
    width: 100px;
    height: 100px;
    border: 3px solid white;
    border-radius: 50px;
    margin-right: 10px;
    cursor: pointer;
  }
}
@media (min-width: 601px) and (max-width: 1028px) {
  .move-result {
    background-color: transparent;
    width: 160px;
    height: 160px;
    border: 3px solid white;
    border-radius: 80px;
    margin-right: 20px;
    margin-bottom: 20px;
    cursor: pointer;
  }
}
