@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: #292C34;
    font-family: Asap, sans-serif;
}
header {
    background: white;
}

header > h1 {
    color: #25272E;
    text-align: center;
    font-family: Asap, sans-serif;
    padding: 20px ;
}

.scoreboard {
    margin: 20px auto;
    border: 3px solid white;
    border-radius: 4px;
    text-align: center;
    padding: 15px 20px;
    width: 200px;
    color: white;
    font-size: 46px;
    font-family: Asap, sans-serif;
    position: relative;
}

.badge {
    background: #E2584D;
    color:white;
    font-size: 14px;
    padding: 2px 10px;
    
    
}

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

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

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

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

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

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

.choice:hover {
    cursor: pointer;
    background: #E2584D;
}

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


.green-glow {
    border: 4px solid rgb(159, 173, 129) ;
    box-shadow: 0 0 10px black;
}

.red-glow{
    border: 4px solid orangered;
    box-shadow: 0 0 10px black;
}

.grey-glow{
    border: 4px solid grey;
    box-shadow: 0 0 10px black;
}