body {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
h1 {
    font-size: 4rem;
    color:#007bff ;
}
#choose {
    margin-bottom: 30px;
}
#choose button {
    font-size: 8rem;
    min-width: 160px;
    margin: 20px;
    border-radius: 300px;
    background-color: #f5a3b9e6;
    cursor: pointer;
    transition: background-color 1s ease-in-out;
}
#choose button:hover {
    background-color: #007bff;
}
#playerDisplay, #computerDisplay {
    font-size: 4rem;
}
#resultDisplay {
    font-size: 4rem;
    margin:  30px;
}
.greenText {
color: green;
}
.redText {
    color: red;
}