body{
    margin: 0;
    background-color: hsl(0, 0%, 40%);
    display: flex;
    justify-content: center;
}

#game{
    background-color: rgb(222, 222, 129);
    padding: 10px 30px;
    display: flex;
    flex-direction: column;
    border-radius: 40px;
    align-items: center;
}

h1{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    font-size: 4rem;
}

#choices{
    margin-bottom: 30px;
    
}

button{
    font-size: 5rem;
    min-width: 160px;
    border-radius: 400px;
    background-color: rgb(0, 157, 255);
    cursor: pointer;
    transition: background-color 0.5s ease;
    border: none;
    margin: 10px;
} 

button:hover{
    background-color: hsl(203, 100%, 10%);
}

#playerDisplay{
    font-size: 2.5rem;
}

#computerDisplay{
    font-size: 2.5rem;
}

#resultDisplay{
    font-size: 5rem;
    margin: 20px 0;
}

.greenText, #playerScoreDisplay{
    color: rgb(10, 240, 10);
}

.redText, #computerScoreDisplay{
    color: tomato;
}

.scoreDisplay{
    font-size: 2rem;
}