body {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Lato-Regular';
    src: url("../fonts/Lato-Regular.ttf/");
    
}

@font-face {
    font-family: "Century Gothic";
    src: url( "../fonts/century-gothic-font/century-gothic.ttf");
}

.navbar {
    display: flex;
    justify-content: space-between;
    width:100%;
    align-items: center;
    background-color: #020E19;
    height: 90px;
    color: white;
    font-family: "Lato-Regular", sans-serif;
    /*position:fixed;*/
    /*z-index:99999;*/

.logo img {
    height: 80px;
}

.nav-menu {
    display: flex;
    margin-right:2%;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/*.imgLogoNavBar{*/
/*    width:70%;*/
/*}*/

/*.navMenuBureau{*/
/*    width:30%;*/
/*}*/

.menu-icon {
    display: none;
    cursor: pointer;
}

@media (max-width: 900px) {
    .logo img {
        padding-left: 0;
    }

    .nav-menu {
        overflow: hidden;
        transition: max-height 1s ease-out;
        max-height: 0; 
        width: 100%;
        position: absolute;
        top: 90px; 
        left: 0;
        right: 0;
        background: #020E19;
        z-index: 10000;

    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-menu li {
        padding: 20px 0;
    }

    .menu-icon {
        display: block;
        margin-right:5%;
    }

    .active {
        max-height: 500px; 
    }
}