@import url("https://fonts.googleapis.com/css2?family=Asap:wght@400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #25272e;
}
header {
  background-color: white;
  padding: 20px;
}
header > h1 {
  color: #25272e;
  text-align: center;
  font-family: "Asap", sans-serif;
}
.score-board {
  margin: 20px auto;
  border: 3px solid white;
  border-radius: 4px;
  text-align: center;
  width: 200px;
  color: white;
  font-size: 46px;
  padding: 15px 20px;
  font-family: "Asap", sans-serif;
  position: relative;
}
.badge {
  background-color: #4c9a2a;
  color: white;
  font-size: 14px;
  padding: 4px 10px 6px 10px;
  font-family: "Asap", sans-serif;
  border-radius: 32px;
}
.badge:nth-child(2) {
  background-color: #cd212a;
}

#user-label {
  position: absolute;
  top: 30px;
  left: -25px;
}
#computer-label {
  position: absolute;
  top: 30px;
  right: -30px;
}
.result {
  font-size: 40px;
  color: white;
}
.result > p {
  text-align: center;
  font-family: "Asap", sans-serif;
  font-weight: bold;
  margin-top: 2em;
}
.choices {
  margin: 50px 0;
  text-align: center;
}
.choice {
  border: 4px solid white;
  display: inline-block;
  border-radius: 50%;
  padding: 15px;
  margin: 0 10px;
  transition: all 0.3s ease;
}
.choice:hover {
  cursor: pointer;
  background-color: #17181c;
}
#action-message {
  text-align: center;
  color: white;
  font-family: "Asap", sans-serif;
  font-weight: bold;
  font-size: 20px;
}
.green-glow {
  border: 4px solid #4dcc7d;
  box-shadow: 0 0 10px #31b43a;
}
.red-glow {
  border: 4px solid #fc121b;
  box-shadow: 0 0 10px #d01115;
}
.gray-glow {
  border: 4px solid #464647;
  box-shadow: 0 0 10px #25292b;
}
