body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
}

.game-container {
    text-align: center;
}

.choices {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.choice {
    border: none;
    background: none;
    cursor: pointer;
    margin: 0 10px;
}

.choice img {
    width: 100px;
    height: 100px;
}

.results-container {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.player {
    text-align: center;
}

.choice-display img {
    width: 50px;
    height: 50px;
}

.result {
    margin-top: 20px;
}

#result-text {
    font-size: 24px;
    font-weight: bold;
}
