* {
    margin: 2px;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 50px;
    background-color: #17376e;
}

#logo {
    width: 200px;
}

#logo > img {
    width: 200px;
}

#nav {
    display: flex;

}

#nav > ul {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

#nav > ul > li {
    display: inline-block;

    width: 100px;
    height: 40px;
    /* background-color: green; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

#nav > ul > li:hover {
    background-color: green;
}

#nav > ul > li:first-child {
    background-color: red;
}

#nav > ul > li > a {
 text-decoration: none;
 font-size: 20px;
 color: white;
}