body{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1{
    font-size: 3.5rem;
    color: hsl(0, 0%, 21%);
}

#choices{
    margin-bottom: 30px;
}

#choices button{
    font-size: 7.5rem;
    min-width: 160px;
    margin: 0 10px;
    border-radius: 50%;
    background-color: hsl(160, 84%, 53%);
    cursor: pointer;
    transition: background-color 0.5s ease;
}

#choices button:hover{
    background-color: hsl(160, 84%, 73%);
}
#choices button:active{
    background-color: hsl(160, 84%, 93%);
}

#playerDisplay, #computerDisplay{
    font-size: 2.5rem;
}

#result{
    font-size: 5rem;
    margin: 30px 0;
}

.greenText, #playerScoreDisplay{
    color: green;
}
.redText, #computerScoreDisplay{
    color: red;
}

.scoreDisplay{
    font-size: 2rem;
}