*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #292C34;
}
header{
    background-color: white;
    color: #25272E;
    text-align: center;
    font-family: sans-serif;
    padding: 20px;
}
.score-board{
    border: 3px solid white;
    width: 200px;
    border-radius: 4px;
    text-align: center;
    margin: 20px auto;
    color: white;
    font-size: 46px;
    padding: 15px 20px;
    position: relative;
}
.badge{
    background-color: #E2584D;
    color: white;
    font-size: 14px;
    padding: 2px 10px;
}
#User-label{
    position: absolute;
    top: 30px;
    left: -25px;
}
#Comp-label{
    position: absolute;
    top: 30px;
    right: -30px;
}
.result{
    font-size: 40px;
    color: white;
    text-align: center;
}
.choices{
    margin: 50px 0px;
    text-align: center;
}
.choice{
    background-color: white;
    border: 4px solid white;
    border-radius: 50%;
    padding: 20px;
    margin: 0 20px;
    display: inline-block;
    transition: all 0.5s ease;
}
.choice:hover{
    cursor: pointer;
    background-color: whitesmoke;
}
#action-message{
    text-align: center;
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 20px;
}