main {
    text-align: center;
    margin: 50px auto;
    padding: 20px;
    background-color: rgb(241, 241, 241);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.215);
    width: 80%;
    max-width: 600px;
}

/* Choices Section */
.choices {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.choice {
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

.choice p {
    color: #4CAF50;
    font-weight: bold;
}

.choice:hover {
    transform: scale(1.1);
}

/* Result Box */
#result-box {
    margin-top: 20px;
    padding: 15px;
    background: #eee;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.result-side p {
    font-weight: bold;
}

#game-result {
    font-size: 1.8em;
    font-weight: bold;
}

#user-choice, #opponent-choice {
    font-size: 1.2em;
    margin: 5px 0;
}

/* Win, Lose, Tie Colors */
.win {
    color: green;
}

.lose {
    color: red;
}

.tie {
    color: blue;
}