body {
  font-family: 'Arial', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: linear-gradient(to right, #3a8119, #adffb8);
  color: #333;
}

#rps-game {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  /* Center the game content */
}

#choices button {
  padding: 15px 25px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  margin: 10px;
  transition: background-color 0.3s;
}

#choices button:hover {
  background-color: #0056b3;
}

#result {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
}

#scoreboard {
  margin-top: 20px;
  font-size: 20px;
}

#player-score,
#computer-score {
  margin: 10px;
}

#game-info {
  text-align: center;
  margin-bottom: 20px;
}

#round {
  font-size: 20px;
  margin: 10px 0;
}