@import url('https://fonts.googleapis.com/css2?family=Asap:wght@400;500;700&display=swap');
:root {
  --bkg-color: #292c34;
  --badge-color: #e2584d;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Asap', sans-serif;
}

body {
  background-color: var(--bkg-color);
}

header {
  background-color: #fff;
  padding: 20px;
}

.score-board {
  position: relative;
  border: 3px solid #fff;
  width: 200px;
  margin: 20px auto;
  color: #fff;
  font-size: 46px;
  border-radius: 4px;
  padding: 15px 20px;
  text-align: center;
}

.badge {
  background: var(--badge-color);
  color: #fff;
  font-size: 14px;
  padding: 2px 10px;
}

#user-label {
  position: absolute;
  top: 30px;
  left: -25px;
}
#computer-label {
  position: absolute;
  top: 30px;
  right: -30px;
}
.result {
  font-size: 40px;
  color: #fff;
}
.result > p {
  text-align: center;
  font-weight: bold;
}

/* Hands */
.choices {
  margin-top: 50px;
  text-align: center;
}
.choice {
  border: 4px solid #fff;
  border-radius: 50%;
  padding: 10px;
  margin: 0 20px;
  display: inline-block;
  transition: all 300ms ease;
}
.choice:hover {
  cursor: pointer;
  background: #24272e;
}

#action-message {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  margin-top: 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;
}
