#button-mobile-disable {
    display: flex;
}

#button-mobile-enable {
    display: none;
}

.navbar-body {
    background-color: #000000;
}

li.nav-item a{
    font-weight: bold;
    color: white;
}

li {
    padding-right: 10px;
}

li.nav-item a:hover{
    color:rgba(240, 255, 255, 0.418);
}

@media screen and (max-width: 992px) {
 
    #button-mobile-disable {
        display: none;
    }

    #button-mobile-enable {
        display: block;
    }
    
}