.navbar_container {
    grid-area: navbar;
    position: absolute;
    bottom: 0;
    border:1px solid rgb(105, 105, 105) ;
    border-bottom: none;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    box-shadow: 0px 40px 60px 1px white ;
    border-left: none;
    border-right: none;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 10%;
    justify-content: space-between;
    list-style-type: none;
    padding: 2px 5px;
    margin: 0%;
    animation: shadow 4s infinite;

    background-color: rgb(7,7,7);
}

/* @keyframes shadow {
    0%{
        box-shadow: 0px 40px 60px 1px white ;
    }
    50%
    {
        box-shadow: 0px 20px 60px 1px rgb(125, 87, 175);
    }
    100%
    {
        box-shadow: 0px 40px 60px 1px white ;

    }
} */

.navbar__ellement {
    
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
}
.navbar__ellement__icon {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.navbar__ellement__span {
    color: white;
    font-size: small;
    font-weight: 300;
}

.link {
    display:  flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

a {
    text-decoration: none;
}