#meetup {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

#meetup img {
    margin-block: 1rem;
    width: 60%;
}

#meetup section {
    flex-grow: 1;
}

@media (max-width: 1100px) {
    #meetup {
        flex-direction: column;
        gap: 0;
    }
    #meetup img {
        width: 100%;
    }
}