body {
  font-family: sans-serif;
  font-weight: bold;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
}

h1 {
  font-size: clamp(6vw, 3.5rem + 2px, 6.8vw);
  color: hsl(0, 0%, 20%);
}

.choices {
  margin-bottom: 30px;
}

.choices button {
  font-size: 7.5rem;
  min-width: 160px;
  margin: 0 10px;
  margin-top: 10px;
  border-radius: 50%;
  border: none;
  background-color: hsl(200, 100%, 50%);
  cursor: pointer;
  transition: background-color 0.5s ease;
}

.choices button:hover {
  background-color: hsl(200, 100%, 70%);
}

#player-display,
#computer-display {
  font-size: 2.5rem;
}
#player-display {
  margin-top: 30px;
}
#computer-display {
  margin-top: 15px;
}

#result-display {
  font-size: 5rem;
  margin: 30px 0;
  text-align: center;
  width: 100%;
  height: 120px;
  padding: 0;
}

.green-text,
#player-score-display {
  color: yellowgreen;
}

.red-text,
#computer-score-display {
  color: firebrick;
}

.radial-text {
  background-clip: text;
  background-image: repeating-conic-gradient(
    from 20deg,
    firebrick,
    yellowgreen,
    firebrick,
    yellowgreen,
    firebrick,
    yellowgreen,
    firebrick,
    yellowgreen,
    firebrick,
    yellowgreen
  );
  color: transparent;
}

.score-display {
  font-size: 2rem;
  margin: 0;
  padding: 0;
}
