body{

    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.greenText, #playerScoreDisplay{
    color: green;
}

.redText, #computerScoreDisplay{

    color: red;

}

h1{
    font-size: 3.5rem;
    color: #2f01ff;
    margin-top: 20px;
}

.choice {
   margin-bottom: 30px;
}

.choices {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.choices button {
    padding: 0;
    width: 160px;
    height: 160px;
    font-size: 7.5rem;
    margin: 0 10px;
    cursor: pointer;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 1.0s ease;
    outline: none;
}

.choices button:hover {
    background-color: #ad0303;
    outline: none;
}

#playerDisplay, #computerDisplay {
    font-size: 2rem;
    margin: 30px 0;
}

#resultDisplay {
    font-size: 5rem;
    margin: 20px;
   
}

.scoreDisplay{
    font-size: 2rem;
}