* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1rem;
    margin: 1rem;
}

#game-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#your-choice, #opponent-choice {
    width: 150px;
    height: 150px;
}

#your-choice, #opponent-choice {
    margin: 0 1rem;
}

#result-message {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
}

#choices {
    display: flex;
    gap: 1rem;
}

#choices img {
    width: 25vw;
    max-width: 80px;
    height: 25vw;
    max-height: 80px;
    cursor: pointer;
    transition: transform 0.2s;
}

#choices img:hover {
    transform: scale(1.1);
}

#scores {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 10px;
}

/* Media Query for Larger Screens */
@media (min-width: 768px) {
    #choices img {
        width: 80px;
        height: 80px;
    }

    #opponent-choice, #your-choice {
        max-width: 240px;
        max-height: 240px;
    }

    h1 {
        font-size: 3rem;
    }
}

/* Media Query for Small Screens */
@media (max-width: 600px) {
    #opponent-choice, #your-choice {
        max-width: 50vw;
        max-height: 50vw;
    }

    #choices img {
        width: 30vw;
        max-width: 70px;
        height: 30vw;
        max-height: 70px;
    }
}

#continueButton {
    display: none;
}
