*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #292C34;
    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: 46px;
    padding: 15px 20px;
    position: relative;
}

.badge{
    background-color: salmon;
    font-size: 14px;
    padding: 2px 10px;
}

#user-label{
    position: absolute;
    top:30px;
    left:-25px;
}

#comp-label{
    position: absolute;
    top:30px;
    right:-25px;
}

.result{
    font-size: 30px;
    color:white;
    text-align: center;
    font-weight: bold;
}

.choices{
    text-align: center;
    font-size:36px;
    padding: 50px 0;
}
i{
    border:2px solid white;
    padding:10px;
    margin: 0 10px;
    border-radius:50%;
    color:#F1C27D;
}
.choices i:hover{
    cursor: pointer;
    background: #343C42;
}

#message{
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.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;
}