.row-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 2rem;
    grid-row-gap: 0px;
}

.menu-item  {
    position: relative;
    white-space: nowrap;
    transition: all 200ms ease-in-out;
    border-radius: 20%;
    background: transparent;
}

.menu-item:hover {
    transform-origin: center;
    transform: scale(1.1);
    box-shadow: 0 0 20px 0 #fbe4ad;
    cursor:pointer;
}

.menu-item-text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-item-text {
    font-family: 'wikiFont';
    font-weight: bold;
    font-size: 1.4vw;
    text-transform: capitalize;
    margin: 0;
}

a {
    font-size: inherit;
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}