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

body {
    background-color: #24272E;
    font-family: Asap, sans-serif;
}

header {
    background: #ffffff;
    padding: 20px;
}

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

.score-board {
    border: 3px solid white;
    width: 200px;
    margin: 30px auto;
    /*centers*/
    text-align: center;
    color: white;
    font-size: 46px;
    border-radius: 5px;
    padding: 15px 20px;
    position: relative;
}

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

#user-label {
    position: absolute;
    /* Absolute sets it in position to the parent=score-board*/
    top: 30px;
    left: -25px;
}

#computer-label {
    position: absolute;
    /* Absolute sets it in position to the parent=score-board*/
    top: 30px;
    right: -30px;
}

#draw-label {
    position: absolute;
    /* Absolute sets it in position to the parent=score-board*/
    top: 70px;
    right: 68px;
}

.result {
    font: white;
    font-size: 38px;
    margin: 0 auto;
    width: 50%;
    background: white;
    border-radius: 10px;
}

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

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

.choice {
    display: inline-block;
    /*Makes them horizontal*/
    border: 4px solid white;
    border-radius: 50%;
    padding: 10px;
    margin: 0 20px;
    transition: all 1s ease;
    /* 0.3second ease into change */
}

.choice>img {
    border-radius: 50%;
}

p {
    font: white;
}

.choice:hover {
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

#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;
}

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