body {
    font-family: sans-serif;
    margin: 20px;
    background-color: #f4f4f4;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.image-item {
    flex: 1 0 300px; /* Minimum szÃ©lessÃ©g 300px, egyenlÅ arÃ¡nyban nÅ/csÃ¶kken */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden; /* KerekÃ­tett sarkokhoz */
}

.image-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out; /* AnimÃ¡ciÃ³ a nagyÃ­tÃ¡shoz */
}

.image-item img:hover {
    transform: scale(1.05); /* NagyÃ­tÃ¡s hoverre */
}

/* Kisebb kÃ©pernyÅkre */
@media (max-width: 600px) {
    .image-item {
        flex-basis: 100%; /* Egy oszlopban jelennek meg */
    }
}
