
.game-container {
    max-width: 800px;
    margin: 0 0;
}

.images {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.images.hidden {
    display: none;
}

.image {
    position: relative;
    margin: 0 10px;
}

.image img {
    border-radius: 10px;
    width: 450px; 
    height: auto;
}

.highlight {
    outline: 3px solid red; 
}


.circle {
    position: absolute;
    width: 30px; 
    height: 30px;
    border: 2px solid red;
    border-radius: 50%;
    pointer-events: none; 
}


@media (min-width: 300px) and (max-width: 1024px) {

    .image img {
        width: 330px; 
    }
}
