.container {
    padding: 50px 10%;
}

.container--brown {
    background-color: #2F191B;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.flex-container__info {
    flex: 1;
}

.flex-container__img {
    width: auto;
    height: 50%;
    object-fit: cover;
}

@media (max-width: 800px) {
    .flex-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .flex-container__info {
        text-align: center;
    }

    .flex-container__img {
        width: 50%;
        height: auto;
    }
}