body{
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    background-color:  hsl(316, 54%, 91%);

}
#choices h1{
    text-align: center;
}
#choices button{
    min-width: 150px;
    font-size: 7.5rem;
    margin:20px 20px 20px;
    border-radius: 100px;
    background-color: #9f006f;
    border: none;
    cursor: pointer;
    transition:background-color 0.5s ease;

}
#choices button:hover{
    background-color: #9f006f90;
}

#playerDisplay , #computerDisplay{
    font-size: 2.5rem;
}
#resultDisplay{
    font-size: 4rem;
    margin: 30px 0;
}
.scoreDisplay{
    font-size: 2rem;
}
.greenText , #playerScoreDisplay{
    color: rgb(0, 216, 0);
}
.redText , #computerScoreDisplay{
    color: red;
}