@import url('https://fonts.googleapis.com/css2?family=Asap+Condensed:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Asap Condensed', sans-serif;
}

body {
    background: greenyellow;
}

header {
    background: black;
    padding: 20px
}

header > h1 {
    color: white;
   font-family: 'Asap Condensed', sans-serif;
    text-align: center;
}

.score-board {
    margin: 20px auto;
    border: 3px solid #7b00ad;
    width: 200px;
    color: white;
    font-size: 46px;
    border-radius: 4px;
    text-align: center;
    padding: 15px 20px;
    font-family: 'Asap Condensed', sans-serif;
    position: relative;
}

.badge {
    background: black;
    color: white;
    font-size: 16px;
    padding: 2px 10px;
    font-family: 'Asap Condensed', sans-serif;
}

#user-label {
    position: absolute;
    top: 30px;
    left: -25px;
}

#computer-label {
    position: absolute;
    top: 30px;
    right: -25px;
}

.result {
    font-size: 40px;
    color: white;
}
.result > p {
    text-align: center;
    font-weight: bold;
}

.choices {
    margin: 50px 0;
    text-align: center;
}

.choice {
    border: 4px solid white;
    display: inline-block;
    border-radius: 50%;
    width: 20%;
    height: 25%;
    padding: 5% 5%;
    margin: 2.5% 2.5%;
    transition: all 0.3s ease;
}

.choice > img {
    height: 50%;
    width: 100%;
}

.choice:hover {
    cursor: pointer;
    background: black;
}

#action-message {
    text-align: center;
    color: black;
    font-weight: bold;
    font-size: 36px;
}

.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;
}

button {
    position: fixed;
    right: 0;
    margin-right: 5%;
    margin-top: 22.5%;
    padding: 2%;
    background: black;
    color: #7b00ad;
    font-size: larger;
    border-radius: 50%;
    font-weight: bold;
    border: 4px solid black;
    box-shadow: 0 0 10px black;
}

button:hover {
    cursor: pointer;
    background: red;
    color: white;
    border: 4px solid white;
    box-shadow: 0 0 10px white;
    font-weight: bold;
}