* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section, article, aside, footer, header, nav {
    display: block;
}

body {
    background-color: #F5F5F5;
}

a:link, a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.header-container, .footer-container {
    color: #0F1626;
    width: 100%;
    background-color: #F5F5F5;
}

.header-container {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 10px;
    height: 100px;
    border-bottom: 5px solid #0F1626;
}

.header {
    width: 600px;
    display: flex;
    justify-content: space-between;
}

.name h1 {
    font-size: 32px;
    font-family: times, sans-serif;
    letter-spacing: 1px;
}

.name p {
    font-size: 18px;
    font-family: times, sans-serif;
}

.menu {
    margin-top: 40px;
}

.menu h2 {
    display: none;
}

.menu>li {
    display: inline;
    margin-right: 30px;
}

.menu>li:last-of-type {
    margin-right: 0px;
}

.footer-container {
    display: flex;
    justify-content: center;
    height: 50px;
    padding-top: 10px;
    border-top: 5px solid #0F1626;
}

.footer {
    width: 600px;
    display: flex;
    justify-content: flex-end;
}

@media only screen and (max-width:599px) {
    .header-container {
        height: 125px;
    }
    .header {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .menu {
        margin-top: 15px;
        width: 100%;
    }
    .footer {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
}
