#menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#dishes {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 10px;
}

.dish {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    padding: 20px;
    background-color: #ffffff ;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
}


.dish-description {
    color: #fff;
    text-align: center;
}

.dish-rate i {
    color: yellow;
}


@media screen and (max-width: 1170px) {
    #dishes {
        flex-wrap: wrap;
        justify-content: center;

    }

    .dish {
        width: calc(50% - 12px)
    }
}

@media screen and (max-width: 600px) {
    .dish {
        width: calc(50% - 12px)
    }

    #menu .section-subtitle {
        text-align: center;
    }
}