#imagem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#dishes {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 350px;
}

.dish {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.dish img{
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 1280px) {
    #dishes {
        width: 100%;
        /* flex-wrap: wrap; */
        justify-content: center;
    }

    .dish{
        width: calc(100% - 100px);
    }

    .dish img {
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 600px) {
    #dishes {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .dish{
        width: 80%;
    }
}

@media screen and (max-width: 1400px) {
    #dishes {
        width: 100%;
        /* flex-wrap: wrap; */
        justify-content: center;
    }

    .dish{
        width: calc(100% - 100px);
    }

    .dish img {
        width: 100%;
        height: 100%;
    }
}
