*{
    border: 0;
    margin: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
body{
    background: #aad2ac;
}
header h1{
    color: #360917;
    background: #ffffff;
    text-align: center;
    padding: 20px;
}
.score_board{
    position: relative;
    text-align: center;
    width: 200px;
    margin:20px auto; 
    size: 30px;
    border: 3px solid #000000;
    border-radius: 4px;
    font-size: 45px;
}
.badge{
    background: #fc121b;
    font-size: 20px;
    position: absolute;
    padding: 2px 10px;
    border-radius: 4px;
    color: #ffffff;
    
}
#comp_label{
    position: absolute;
    top: 10;
    right: -40px;
    color: #360917;

}
#user_label{
    position: absolute;
    top: 10;
    left: -30px;
    color: #360917;
}
.result{
    text-align: center;
    font-weight: 700;
    font-size: 30px;
    margin: 20px;
}
.choices{
    text-align: center;
    margin: 50px 0;
}
.choice{
    border: 4px solid rgba(233, 216, 216, 0.863);
    border-radius: 50%;
    display: inline-block;
    padding: 40px;
    margin: 2px;
    
}
.choice img{
    margin: 20;
}
.action{
    text-align: center;
    font-weight: 700;
    font-size: 30px;
    margin: 15px;
}
.choice:hover{
    cursor: pointer;
    background-color: #caead2;
}
.choice:active{
    cursor: pointer;
    background-color: #9dc4a8;
}

.green-glow{
    border: 4px solid #1dd629;
    box-shadow: 0 0 10px #1dd629;
}
.red-glow{
    border: 4px solid #fc121b;
    box-shadow: 0 0 10px #d01115;
}
.grey-glow{
    border: 4px solid #454647;
    box-shadow: 0 0 10px #25292b;
}







