.image-table{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
}
.menu-long-cell, .menu-short-cell, .menu-full-cell{
    contain: content;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 10px;
    overflow: hidden;
}
.menu-long-cell{
    width: 60%;
}
.menu-short-cell{
    width: 30%;
}

.menu-full-cell{
    width: 90%;
}

.menu-img{
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    filter: grayscale(1) brightness(0.7);
    transition: 1s;
    object-fit: cover;
}

.menu-long-cell:hover > .menu-img, 
.menu-short-cell:hover > .menu-img,
.menu-full-cell:hover > .menu-img,
.menu-long-cell:active > .menu-img, 
.menu-short-cell:active > .menu-img,
.menu-full-cell:active > .menu-img{
    filter: grayscale(0) brightness(1);
    cursor: pointer;
    transition: 1s;
}

.menu-text{
    color: white;
    text-shadow: 1px 2px 5px black;
    position: absolute;
    z-index: 2;
    font-weight: 700;
}

.menu-section{
    background: black;
    margin-top: 200px;
    margin-bottom: 200px;
    padding: 50px 0px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
}

.menu-entered .menu-img{
    filter: grayscale(0) brightness(1);
    cursor: pointer;
    transition: 1s;
}