#menu {
    display: flex;
    height: 56px;
    background-color: #263892;
    align-items: center;
} 

#menu ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    /* padding: 20px 0; */
    margin-left: 60px;
}

#menu ul li a {
    color : white;    
    text-decoration: none;
    font-size: 24px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    display: flex;
}

#menu ul li {
    list-style-type: none;
}