/* Media query for mobile devices */
@media (max-width: 767px) {
    .navbar-expand .navbar-nav {
        justify-content: center; /* Center items horizontally */
    }
    .navbar-nav {
        -ms-flex-direction: row; /* Change direction to row for centering */
        flex-direction: row;
        text-align: center; /* Center text within list items */
    }
    .navbar-nav li {
        margin-right: 10px; /* Add spacing between list items */
    }
}

/*.navbar-nav {*/
/*    background-color: #000!important;*/
/*}*/