
header {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.navbar {
    
    display: flex;
    max-width: 1400px;
    width:100%;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    padding: 0 2em;
    background-color: #FDFDFC;
    margin-top: 1em;
    border-bottom: 1px solid #EFEBEC;
}

.nav-title {
    margin-right: auto;
}

.nav-title a {
    color: #434242;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.15em ;
}


.menu {
    list-style-type: none;
    margin: 0.5em 0;
    padding: 0;
}

.menu li {
    display: inline;
    margin: 0 0.5em;
}

.menu li a {
    text-decoration: none;
    color: #434242;
}

.menu li a:hover {
    color: #FC8202;
}

.navbar-toggler {
    color: #434242;
}


#myNav {
    display: none;
}

@media only screen and (max-width: 900px) {

    .navbar {
        flex-direction: column;
        justify-content: center;
        padding: 0;
    }

    .nav-title {
        margin-left: auto;
    }

    .menu li {
        margin: 0.2em;
    }

}

