#main-menu-container {
    display: flex;
    margin: auto;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 30px 5vw;
    flex-direction: row;
    gap: 3rem;
}

#menu_cats_container {
    display: flex;
    flex-flow: row wrap;
}

.menu-group-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    border-radius: 10px;
    /*padding: 10px 50px 30px;*/
}

.menu-icons-container {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    justify-content: center;
}

.menu-item {
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
    min-width: 150px;
    min-height: 150px;
    max-width: min(30vw, 30vh);
    max-height: min(30vw, 30vh);
    transition: opacity 0.5s ease;
    box-shadow: 0 0 5px 2px black;
    margin: 1rem;
    flex: 1;
    aspect-ratio: 1 / 1;
    text-decoration: none;
    background-color: #EEEEEE;
    color: #333333;
    font-family: system-ui, "Raleway", sans-serif;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
}

.menu-item .menu-label {
    display: flex;
    position: absolute;
    height: fit-content;
    bottom: 0;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    background: #fafafadd;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: inherit;
}

.menu-item .menu-link {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* hover */
.menu-item:hover .menu-label {
    height: 100%;
    font-size: 1.5rem;
}

.menu-item .menu-img {
    object-fit: cover;
    aspect-ratio: 1 / 1;
}


/* customs */
/*.menu-item#menu-wheat_kernel .menu-img {*/
/*    margin-top: 13px;*/
/*}*/

/*.menu-item#menu-pea_kernel .menu-img {*/
/*    margin-top: -10px;*/
/*}*/

/*.menu-item#menu-canola_kernel .menu-img {*/
/*    margin-top: -12px;*/
/*}*/