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

h1 {
    font-size: 3.5rem;
    color: blueviolet;
}

.choices {
    margin-bottom: 30px;
}

.choices button {
    font-size: 7.5rem;
    min-width: 160px;
    margin: 0 10px;
    border-radius: 100%;
    cursor: pointer;
    background-color: aqua;
    transition: background-color 0.5s ease;
}

.choices button:hover {
    background-color: blue;
}

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

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

.scoreDisplay {
    font-size: 2rem;
}

.greenText,
#playerScoreDisplay {
    color: green;
}

.redText,
#computerScoreDisplay {
    color: red;
}

