body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90vh;
}
.buttons button{
   font-size: 6em;
   width: 140px;
   border-radius: 50%;
   margin: 5px;
   background-color: hsl(167, 64%, 54%);
}
.buttons button:hover{
 background-color: hsl(167, 64%, 74%);
}
h1{
    font-size: 3em;
    color: hsl(0, 0%, 20%);
}
#player, #computer{
    font-size: 2rem;
    font-weight: bold;
}
#result{
    font-size: 4rem;
}
.green{
    color: rgb(53, 203, 12);
}
.red{
    color: red;
}

#ps,#cs{
 font-size: 2rem;
}
#psd{
    color: rgb(115, 227, 35);
    font-weight: bold;
}
#csd{
    color: red;
    font-weight: bold;
}