

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

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

.menu-item-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'wikiFont';
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0;
}

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

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