* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #24272e;
}

h1 {
    background-color: white;
    color: #24272e;
    padding: 20px;
    text-align: center;
    font-family: 'Asap', serif;
}

.score-board {
    margin: 20px auto;
    border: 3px solid white;
    border-radius: 5px;
    text-align: center;
    width: 50%;
    color: white;
    font-size: 50px;
    padding: 15px 15%;
    font-family: 'Asap', serif;
}

.badge {
    background-color: #e25840;
    color: white;
    font-size: 15px;
    padding: 2px 10px;
    font-family: Asap, sans-serif;
}

#user-label {
    position: absolute;
    top: 22%;
    left: 15%;
}

#comp-label {
    position: absolute;
    top: 22%;
    right: 15%;
}

.result {
    font-size: 1.5rem;
    color: white;
}

.result > p {
    text-align: center;
    font-weight: bold;
    font-size: 2em;
    font-family: Tangerine, sans-serif;
}

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

.choice {
    padding: 30px;
    display: inline-block;
}
.choice > img {
    width: 100px;
}

.choice:hover {
    cursor: pointer;
}

.green-glow {
    border: 4px solid #4dcc7d;
    box-shadow: 0 0 10px #31b43a;
    border-radius: 50%;
}

.red-glow {
    border: 4px solid #fc121b;
    box-shadow: 0 0 10px #d01115;
    border-radius: 50%;
}

.gray-glow {
    border: 4px solid #464647;
    box-shadow: 0 0 10px #31b43a;
    border-radius: 50%;
}

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

#act {
    background-color: tomato;
    color: #ccc;
    font-size: 1.2rem;
}










