@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: #3d9684;
}

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

header > h1 {
    color: #3d9684;
    text-align: center;
    font-family: Asap, sans-serif;
}

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

.badge {
    background: #ea8fb2;
    color: #fff;
    font-size: 14px;
    padding: 2px 10px;
    font-family: Asap, sans-serif;
}

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

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

.result {
    font-size: 40px;
    color: #fff;
}

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

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

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

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

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

/* Box shadow is {horizonatal vertical blur color *spread*} */
.green-glow {
    border: 4px solid #4dcc7d;
    box-shadow: 0 0 10px #31b43a;
}

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

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




























