body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #eeebd3;
  color: #f7c548; /* swapped from #255957 */
  margin: 0;
  padding: 0;
}

.game-container {
  max-width: 500px;
  margin: 50px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #437c90;
}

.choices {
  margin-bottom: 20px;
}

.choice {
  font-size: 1.5rem;
  margin: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: #255957; /* swapped from #f7c548 */
  color: #f7c548; /* swapped from #255957 */
  transition: background-color 0.3s;
  font-weight: bold;
}

.choice:hover {
  background-color: #a98743;
}

.results {
  font-size: 1.2rem;
  margin-top: 20px;
  color: #f7c548; /* swapped from #255957 */
}

#winner {
  color: #437c90;
  font-size: 1.5rem;
  margin-top: 10px;
}
