body{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    margin: 0;
    align-items: center;
}

h1{
    font-size: 2.8rem;
    color: hsl(0, 2%, 20%);
}

.choices{
    margin-bottom: 30px;
}

.choices button{
    font-size: 6.0rem;
    min-width: 150px;
    margin: 0 6px;
    border-radius: 20px;
    cursor: pointer;
    background-color: lightpink;
    transition: background-color 0.5s ease;
}

.choices button:hover{
    background-color: hsl(200, 100%, 70%);
}

#playerDisplay, #computerDisplay{
    font-size: 2.5rem;
}

#resultDisplay{
    font-size: 5rem;
    margin: 30px 0;
}

.scoreDisplay{
    font-size: 2rem;
}

.greenText, #playerScoreDisplay{
    color: hsl(130, 84%, 54%);
}

.redText, #computerScoreDisplay{
    color: hsl(0, 84%, 60%);
}