@import url("https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,400;0,700;1,500&display=swap");

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: "Asap", sans-serif;
}

body {
   background-color: #24272e;
}

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

header > h1 {
   color: #24272e;
   text-align: center;
}

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

.badge {
   background-color: #e2584d;
   border-radius: 3px;
   color: white;
   font-size: 14px;
   padding: 2px 10px;
}

#user-label {
   position: absolute;
   top: 30px;
   left: -30px;
}

#computer-label {
   position: absolute;
   top: 30px;
   right: -30px;
}

.result {
   font-size: 40px;
   color: white;
}

.result > p {
   text-align: center;
   font-weight: bold;
}

.choices {
   margin-top: 50px;
   text-align: center;
}

.choice {
   border: 4px solid white;
   border-radius: 50%;
   display: inline-block;
   margin: 0px 20px;
   padding: 10px;
   transition: all 0.3s ease;
}

.choice > img {
   height: 100px;
   width: 100px;
}

.choice:hover {
   cursor: pointer;
   background-color: #17191d;
}

#action-message {
   text-align: center;
   color: white;
   font-weight: bold;
   font-size: 20px;
   margin-top: 30px;
}

.green-glow {
   border: 4px solid #4dcc7d;
   box-shadow: 0 0 10px #31b43a;
}

.red-glow {
   border: 4px solid #fc121b;
   box-shadow: 0 0 10px #d01115;
}

.grey-glow {
   border: 4px solid #464647;
   box-shadow: 0 0 10px #25292b;
}
