#menu{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    top: 0;
}

#dishes {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.dish{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    gap: 18px;
    width: 25%;
    padding: 28px;
    background-color: rgb(206, 219, 245);
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.dish:hover{
    background-color: rgb(173, 208, 253);
}

.dish-heart{
    position: absolute;
    background-color: rgb(89, 141, 253);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.563rem;
    color: #ffffff;
    width: 70px;
    height: 70px;
    right: -10px;
    top: -10px;
    border-radius: 0px 37.5px 0px 42.5px;
}

.dish-heart:hover{
background-color: rgb(24, 24, 117);
}

.dish-description{
    color: #434343;
    text-align: center;
}

.dish-rate i{
    color: #e9a209;
}

.dish-price{
    display: flex;
    align-items: center;
    gap: 20px;
}

@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(100%);
    }
}