.foodContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.foodItem {
    /** background: lime; */
    position: relative;
    text-align: center;
}

.foodItem img {
    max-width: 300px;
}

.overlayHeader {
    color: white;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#brickBanner {
    background-image: linear-gradient(to right, rgba(245, 246, 252, 0), rgba(0, 0, 0, 0.7)), url('/web/images/brick-background222.png');
    min-height: 500px;

}

.foodItem:hover {
    cursor: pointer !important;
}

/** Mobile */
@media only screen and (max-width: 767px) {

    #logoDiv {
        text-align: left !important;
    }

    .bigLogo {
        display: none;
    }
}