@import url('https://fonts.googleapis.com/css?family=Asap:400,500,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #24272E;
    font-family:  Asap, sans-serif;
}

header {
    background: white;
    padding: 20px;
}

header > h1 {
    color: #24272E;
    text-align: center;
}

.score-board {
    margin: 20px auto;
    border: 3px solid white;
    border-radius: 4px;
    text-align: center;
    width: 200px;
    color: white;
    font-size: 40px;
    padding: 15px 20px;
    position: relative;
}

.badge {
    background: #E2484D;
    color: white;
    font-size: 14px;
    padding: 2px 10px;
}

#user-label {
    position: absolute;
    top: 30px;
    left: -24px;
}

#computer-label {
    position: absolute;
    top: 30px;
    right: -30px;
}

.result {
    font-size: 40px;
    color: white;
}

.result > p {
    text-align: center;
    font-weight: bold;
    font-family: Asap, sans-serif;   
}

.choices {
    text-align: center;
    margin: 30px 0;
}

.choice {
    margin: 0 10px;
    display: inline-block;
    border: white 3px solid;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
}

.choice:hover {
    cursor: pointer;
    background: #24273E;
    transition: all 0.3s ease;
}

.choice > img {
    max-width: 80px; 
    max-height: auto;
}


#action-message {
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 20px;   
}

.green-glow {
    border: 3px solid #4DCC7D;
    box-shadow: 0 0 10px #31B43A;
}

.red-glow {
    border: 3px solid #FC121B;
    box-shadow: 0 0 10px #D01115;
}

.grey-glow {
    border: 3px solid #464646;
    box-shadow: 0 0 10px #252529;
}
