body{
    font-family: fantasy;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1{
    font-size: 6rem;
    color: rgb(16, 16, 75);
}

.choices{
    margin-bottom: 30px;
}

.choices button{
    background: none;
    font-size: 4rem;
    border-radius: 4px;
    border-color: blue;
    cursor: pointer;
    transition: background-color 0.5s ease;
    height: 270px;
}

.choices button:hover{
    border-color: rgb(188, 89, 212);
}

.choices img{
    width: 400px;
    height: 265px;
}

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

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

.greenText, #playerScoreDisplay{
    color: rgb(16, 61, 16);
}

.redText, #computerScoreDisplay{
    color: rgb(128, 11, 11);   
}  

.scoreDisplay{
    font-size: 2rem;
}