body {
    margin: 0;
    top: 0;
    left: 0;
    padding: 0;
}

/* HEADER */
#header {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 2vh 0;
    z-index: 999;
    float: left;

    background-color: #cce5ff;
    display: block;
}
#header-box {
    height: 100%;
    width: 100%;
    margin: auto;
}

#header-logo {
    width: auto;
    height: auto;
    margin: 0 0 0 1.5vh;
    float: left;

    & h2 {
        margin: 0;
        float: left;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 4.5vh;
        color: #407dbe;
    }
    & h4 {
        margin: 0;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 2vh;
        color: #333;

        & img {
            height: 1.75vh;
            margin: .25vh 0 0 .75vh;
            float: right;
            filter: invert(.7) sepia(.5) hue-rotate(169deg) saturate(200%);
            opacity: .9;
        }
    }
}

.header-item {
    margin: 0 .5vh .25% 1.5vh;
    display: block;

    font-family: 'Franklin Gothic', 'Arial Narrow', Arial, sans-serif;
    font-size: 2vh;
    font-weight: normal;
    text-decoration: none;
    color: #8db7e3;
    transition: all 187ms ease;
}
.header-item[active], .header-item:hover {
    color: #407dbe;
}

/* CONTENT */
#content {
    position: relative;
    width: calc(100% - 3vh);
    height: auto;
    margin: 0;
    padding: 2vh 1.5vh;
    float: left;

    & h1 {
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 4vh;
        font-weight: bold;
        color: #407dbe;
    }
    & h3 {
        margin: 0;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 2.5vh;
        font-weight: bold;
        color: #407dbe;
    }
    & p {
        font-family: sans-serif, 'Arial';
        font-size: 1.75vh;
        font-weight: normal;
        color: #8db7e3;

        & i {
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
            font-size: 2.5vh;
            font-weight: bold;
            color: #407dbe;
        }
        & b {
            width: 100%;
            margin-bottom: 2vh;
            float: left;
            
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
            font-size: 4vh;
            font-weight: bold;
            color: #407dbe;
        }
    }
}

/* FOOTER */
#footer {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 1vh 0;
    z-index: 999;
    float: left;

    background-color: #cce5ff60;
    display: block;
}
#footer-box {
    height: 100%;
    width: 100%;
    margin: auto 1.5vh;
}
#footer-box p {
    max-width: calc(100% - 3vh);
    margin-right: 2vh;

    font-family: sans-serif, 'Arial';
    font-size: 1.5vh;
    font-weight: lighter;
    text-decoration: none;
    color: #8db7e3;
    transition: all 187ms ease;
}
#footer-box a {
    margin: 0 1vh;

    font-family: sans-serif, 'Arial';
    font-size: 1.5vh;
    font-weight: lighter;
    text-decoration: none;
    color: #8db7e3;
    transition: all 187ms ease;
}
#footer-box a:hover {
    color: #407dbe;
}

/* RESPONSIVE */
@media only screen and (min-width: 1600px) {
    #header-box {
        width: 1600px;
        height: 100%;
        float: left;
        margin-left: 50%;
        transform: translateX(-50%);

        display: flex;
        align-items: end;
    }
    .header-item {
        display: block;
    }

    #content {
        width: calc(1600px - 3vh);
        height: auto;
        margin: 0 0 0 50% !important;
        float: left;
        transform: translateX(-50%);
    }

    #footer-box {
        width: 1600px;
        height: 100%;
        float: left;
        margin-left: 50%;
        transform: translateX(-50%);

        display: flex;
        align-items: end;
        justify-content: center;
    }
}