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: hsl(0, 4%, 23%);
}
.choices {
    margin-bottom: 30px;
}
.choices button {
    font-size: 7.5rem;
    min-width: 160px;
    margin: 0px 10px;
    border-radius: 250px;
    background-color: rgb(44, 100, 221);
    cursor: pointer;
    transition: background-color 0.5s ease;
}
.choices button:hover {
    background-color: rgb(21, 55, 129);
}
#playerDisplay, #computerDisplay {
    font-size: 2.5rem;
}
#resultDisplay {
    font-size: 5rem;
    margin: 30px 0;
}
.scoreDisplay {
    font-size: 2rem;
}
#playerScoreDIsplay {
    color: rgb(42, 204, 36);
}
#computerScoreDisplay {
    color: rgb(255, 0, 0);
}