*{ margin: 0;
    padding: 0;
}
 header{/*border: 2px solid black; */
    height: 70px;
    margin: 6px;
    background-color:blueviolet;
}
h1{
    text-align: center;
    padding: 14px;
    color: wheat;
    text-wrap: nowrap;
    text-shadow: 3px 3px black;
    font-size: 25px;
}
main{
    /* border: 2px solid black; */
    height: 80vh;

}
#choice{
    display: flex;
    justify-content: center;
    margin: 50px;

}
.box{
    height: 90px;
    width: 90px;
    /* border: 2px solid black; */
    margin: 15px;
    border-radius: 50%;    
}
.box:hover{
    opacity: 50%;
    cursor: pointer;
}
img{
    height: 90px;
    width: 90px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 5px 2px rgba(0, 0, 0, 0.799);
}
#score{
    /* border: 2px solid black; */
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
#commentary{
    /* border: 2px solid black; */
    height: 100px;
    text-align: center;
    line-height: 100px;
    color: rgb(252, 52, 21);
    font-size: 20px;

}
#user,#computer,#draw{
    /* border: 2px solid black; */
    height: 40px;
    width: 100px;
    margin: 10px;
    font-size: 15px;
    text-align: center;
    line-height: 40px;
    background-color: rgba(255, 0, 0, 0.385);
    color: rgb(105, 52, 238);
    border-radius: 15px;
    box-shadow: 2px 3px black;

    
}
button{border: 2px solid black;
    height: 30px;
    width: 80px;
    font-size: 15px;
    background-color: rgb(246, 106, 106);
    color: rgb(255, 234, 0);
    border-radius: 15px;
    box-shadow: 2px 2px black;
    margin-left: 46%;


}
button:hover{
    opacity: 50%;
    cursor: pointer;
}
