* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #252728;

}

header {
    background: white;
    padding: 20px;
}






header > h1 {
    color: #252728 ;
    text-align: center;
    font-family: sans-serif;
}

.score-board {
    margin: 20px auto ;
    border: 3px solid white;
    border-radius: 4px;
    width:200px;
    color: white;
    font-size: 46px;
    text-align: center;
    padding: 15px 20px;
    font-family: sans-serif;
   position: relative;

}

.badge {
    background-color: #c25840;
    color: white;
    font-size: 14px;
    padding: 2px 18px;
    font-family: sans-serif;
}


#user-label {
    position: absolute;
    top: 35px;
    left: -25px;


}

#computer-label {
    position: absolute;
    top: 35px;
    right:-25px;
}

.result {
    font-size: 40px;
    color: white;
}

.result > p {
    text-align: center;
    font-weight: bold;
    font-family: sans-serif;
}

.choices {
    margin-top: 50px;
    text-align: center ;
}


.choice {
    border: 4px solid white;
    border-radius: 50px;
    margin: 0  20px;
    padding: 20px;
    display: inline-block;
    transition: all 0.3s ease;



}

.choice:hover {
    background: rgb(26, 6, 6);
    cursor: pointer;
    
}



#action-message {
    text-align: center;
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 20px;
    margin-top: 20px;

}



.green-glow {
    border: 4px solid #4bcc7d;
    box-shadow: 0 0 10px #46cc7d;
}




.red-glow {
    border: 4px solid #fc121b;
    box-shadow: 0 0 10px #d01115;
}



.gray-glow {
    border: 4px solid #464647;
    box-shadow: 0 0 10px #25292b;
}


img {
    height: 100px;
    width: 100px;
    padding: auto;
    border-radius: 30px;
}


