body {
    font-family: 'Raleway', sans-serif;
    display: flex;
    align-items: center;
    flex-direction: column;
}
h1 {
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 700;
}
#menu-container {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.card {
    width: 300px;
    min-width: 200px;
    background-color: #F9F9F9;
    border-radius: 10px;
    padding-bottom: 16px;
    margin-bottom: 32px;

    -webkit-box-shadow: 0px 8px 85px -51px rgba(0,0,0,0.2);
-moz-box-shadow: 0px 8px 85px -51px rgba(0,0,0,0.2);
box-shadow: 0px 8px 85px -51px rgba(0,0,0,0.2);
}
.card-img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 16px;
    height: 18px;
}
.card-title {
    font-size: 18px;
    font-weight: 700;
}
.card-price {
    font-size: 18px;
    font-weight: 700;
}
.card-description {
    margin: auto 16px;
    font-size: 16px;
    line-height: 130%;
}

@media (max-width: 991.98px) {
    #menu-container {
        width: 80%;
        align-items: center;
    }
}
@media (max-width: 767.98px) {
    .card {
        flex-grow: 1;
    }
}


