@import url('https://fonts.googleapis.com/css2?family=Asap&display=swap');

*   {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body    {
    background-color: #114461;
}

header  {
    background: white;
    padding: 20px;
}

header > h1 {
    color: #114461;
    text-align: center;
    font-family: Asap, sans-serif;
    font-weight: bold;
}

.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: red;
    color: white;
    font-size: 14px;
    padding: 2px 10px;
    font-family: Asap, sans-serif;
}

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

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

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

.result > p {
    text-align: center;
    font-family: Asap, sans-serif;
    font-weight: bold;
}

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

.choice {
    border: 4px solid white;
    border-radius: 50%;
        /* this should be 50% of the width */
    margin: 0 20px;
    padding: 10px;
    display: inline-block;
    /* horizontal */
    transition: all 0.3s ease;
}

.choice:hover   {
    cursor: pointer;
    background: #17577c;
}

#action-message {
    text-align: center;
    color: white;
    font-family: Asap, sans-serif;
    font-weight: bold;
    font-size: 20px;
    margin-top: 20px;
}

.green-glow {
    border: 1px solid greenyellow;
    border-radius: 50%;
    box-shadow: 0 0 0 10px green;
}

.red-glow {
    border: 1px solid red;
    box-shadow: 0 0 0 10px darkred;
    border-radius: 50%;
}

.gray-glow {
    border: 1px solid grey;
    box-shadow: 0 0 0 10px darkslategray;
    border-radius: 50%;
}