body{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin : 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
h1{
    font-size: 3.5rem;
    color: rgba(0, 0, 0, 0.23);
}
.choices {
 margin-bottom: 30px;

}
.choices button {
    font-size: 7.5rem;
   min-width: 160px;
   margin : 0 10px;
    border-radius: 250px;
background-color: rgb(31, 223, 217);
cursor: pointer;
transition: background-color 0.5s ease;

}
.choices button:hover {
    background-color: rgb(0, 255, 255);
}
#playerDisplay, #computerDisplay {
    font-size: 2.5rem;
}
#resultDisplay{
    font-size: 5rem;
    margin: 0 30px;
}
.scoreDisplay{
    font-size: 2rem;
}
.greenText,#playerScoreDisplay{
    color: rgb(8, 154, 8);
}
.redText,#computerScoreDisplay{
    color: rgb(215, 20, 20);
}