.img-flexbox{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.img-container {
    width: 50%;
    border-radius: 16px;
    margin: 0;
}

.img-container img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 16px;
}


@media (max-width: 850px) {
    .img-container {
        width: 50%;
        height: 250px;
    }
    .img-container img {
        max-height: 100%;
    }
}

@media (max-width: 500px) {
    .img-container {
        width: 100%;
        height: 200px;
    }
    .img-container img {
        max-height: 100%;
    }
} 