footer{
    position: fixed;
    bottom: 0;
    width: min(900px, 100vw);
    left: 50%;
    background:var(--bg-color);
    transform: translateX(-50%);
    padding: 12px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    z-index: 999;
}

footer svg{
    width: 35px;
    height: 35px;
}

footer svg > *{
    fill: var(--dark);
}

.nav-active svg > *{
    fill: var(--light) !important;
}

#notif{
    position: relative; 
}

#notif-ind{
    width: 10px;
    height: 10px;
    background-color: red;
    position: absolute;
    border-radius: 50%;
    top: 0;
    right: 0;
    border: 1px solid var(--light);
}