* {
    box-sizing: border-box;
}

.containerGame {
    text-align: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;

}

.space {
    height: 200px;
}

h1, h2, h3 {
    color: #333;
}

input[type="text"] {
    padding: 0.5rem;
    margin: 0.5rem;
    width: 180px;
}

button {
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.choices {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.choice {
    width: 15vw;
    max-width: 80px;
    height: auto;
    cursor: pointer;
}

.choice:hover, .choice:focus {
    outline: 2px solid #007bff;
}

.hidden {
    display: none;
}

.choices-display {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
}

#player1Image, #player2Image {
    width: 15vw;
    max-width: 80px;
    height: auto;
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }
    .choice, #player1Image, #player2Image {
        width: 20vw;
        max-width: 60px;
    }
    input[type="text"] {
        width: 140px;
    }
}