* {
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
    font-family: 'Palette Mosaic', cursive;
    background-color: red;
}


header{
    background: white;
    padding: 20px
}
header > h1 {
    color: red;
    text-align: center;
    font-family: 'Palette Mosaic', cursive;
}

.scoreboard{
    margin: 20px auto;
    border: 3px solid white;
    width: 200px;
    height: 100px;
    text-align: center;
    color: white;
    font-size: 48px;
    border-radius: 4px;
    padding: 15px 20px;
    position: relative;
    
}
.badge {
    background: #E2584D;
    color: white;
    font-size: 14px;
    padding: 2px 10px;
    font-family: 'Palette Mosaic', cursive;
}

#player-tag {
    position: absolute;
    top: 0px;
    left: -25px;
}
#computer-tag {
    position: absolute;
    top: 0px;
    right: -35px;
}
#user-score {
    position: absolute;
    bottom: 0;
    left: 10px;
}
#com-score {
    position: absolute;
    bottom: 0;
    right: 10px;
}

.result {
    font-size: 48px;
    color: white;
}
.result > p {
    text-align: center;
    font-weight: bold;

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


}
.choice:hover {
    cursor: pointer;
    background-color: #4a4f5a;
}

#message{
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 20px;

}
#doug {
    height: 150px;
    background-color: #4a4f5a;
    border-radius: 50%;
}

#sciss {
    border-radius: 50%;
}
#tp {
    border-radius: 50%;
}




