.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px 0;
}

.menu-item {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
    margin: 5px 0px 10px 0;
}

.menu-item:hover {
    color: transparent;
}

.menu-item-img {
    width: 45px;
    margin-bottom: 5px;
}

.menu-item-text {
    font-size: 0.8rem;
    white-space: nowrap;
    color: #666;
}