#footer {
    display: block;
    width: 100%;
    height: 90px;
    bottom: 0;
    position: fixed;
    z-index: 1;
    background-color: var(--background_div);
    box-shadow: #0000001a 0px -10px 15px -3px, #0000000d 0px -4px 6px -2px;
}

#menu_footer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0px;
    list-style: none;
    margin-left: 5px;
    margin-right: 5px;
}

#menu_footer li {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: var(--background_menu);
    padding: 7px;
    border-radius: 10px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: auto;
    margin-bottom: auto;
    transition: 0.5s ease-in-out;
}

#menu_footer li:hover {

    background-color: var(--background_div_hover);
    transition: 0.5s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.menu_footer_icon {
    display: block;
    max-height: 70%;
    max-width: 70%;
    width: auto;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}