/* Eric Meyer's Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    background-color: #f6f6f6;
    width: 100%;
    font-family: Arial;
    color: #032835;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 100%;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 50px 50px;
    width: 100%;
    text-align: center;
    max-width: 1000px;
    box-sizing: border-box;
}

.header h1 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.menu {
    background-color: #032835;
    color: #Fff;
    width: 100%;
}

.menu > ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.menu > ul > li {
    position: relative;
}

.menu > ul > li > a {
    display: block;
    color: #FFF;
    text-decoration: none;
    padding: 20px 20px
}

.menu > ul > li:hover {
    background-color: #e1e1e1;
    color: #032835;
}

.menu > ul > li:hover > a {
    color: #032835;
}

.menu > ul > li:hover .menu-sub {
    display: block;
}

.menu-sub {
    display: none;
    position: absolute;
    left: 0;
    background-color: #FFF;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.menu-sub > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 0;
    width: 100%;
}

.menu-sub > ul > li {
    width: 100%;
}

.menu-sub > ul > li > a {
    display: block;
    color: #032835;
    white-space: nowrap;
    padding: 10px 20px;
    text-decoration: none;
    width: 100%;
}

.menu-sub > ul > li:hover {
    background-color: #e1e1e1;
}

.main {
    padding: 20px;
    width: 100%;
    max-width: 1000px;
    box-sizing: border-box;
}

.main img {
    width: 100%;
}

