/* Home Page Styles */
body {
    margin: 0;
    padding: 0;
    font-family: lucida, georgia, garamond;
    line-height: 1.5em;
}

#site_wrap {
    background-color: #4b7d8f;
    min-height: 100vh;
    display: grid;
    grid-template-columns:
        1fr repeat(4, minmax(0, 272px)) 1fr;
    grid-gap: 0px;
    grid-template-rows:
        min-content min-content min-content min-content min-content 1fr;
    grid-template-areas:
        "header header header header header header"
        "menu_buttons menu_buttons menu_buttons menu_buttons menu_buttons menu_buttons"
        ". featured_header featured_header featured_header featured_header ."
        ". content_one content_one content_one content_one ."
        ". content_two content_two content_two content_two ."
        "footer footer footer footer footer footer"
}

.header {
    background-color: #282850;
    grid-area: header;
}

.header h1 {
    color: #e5e5e5;
    text-transform: uppercase;
    padding: 50px 0 5px 0;
    text-align: center;
    vertical-align: middle;
    font-size: 75pt;
    font-weight: lighter;
    line-height: normal;

}

.header h2 {
    color: #e5e5e5;
    text-transform: uppercase;
    padding: 5px 0 20px 0;
    text-align: center;
    vertical-align: middle;
    font-size: 50pt;
    font-weight: lighter;
    line-height: normal
}

.menu_buttons {
    background-color: #2f4c73;
    grid-area: menu_buttons;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu_buttons .nav {
    list-style: none;
    padding: 0;
    display: flex;
}

.menu_buttons .nav a {
    text-decoration: none;
    border: 2px solid #e5e5e5;
    color: #e5e5e5;
    padding: 20px 75px;
    margin: 0px 30px;
    font-size: 20pt;
    text-transform: uppercase;
    background-color: #4b7d8f;
    display: inline-block;
}

.menu_buttons .nav a:hover,
.menu_buttons .nav .active {
    background-color: #282850;
}


.featured_header {
    grid-area: featured_header;
}

.featured_header h1 {
    color: #282850;
    padding: 30px 0;
    text-align: center;
    vertical-align: middle;
    font-size: 48pt;
    font-weight: lighter;
    text-transform: uppercase;
}

.content_one {
    grid-area: content_one;
    display: flex;
    justify-content: center;
}

.content_one img {
    margin: 0 5px 2em 5px;
    width: 390px;
    height: 375px;
}

.content_two {
    grid-area: content_two;
    display: flex;
    justify-content: center;
}

.content_two img {
    margin: 0 5px 2em 5px;
    width: 425px;
    height: auto;
}

.footer {
    background-color: #282850;
    grid-area: footer;
    text-align: center;
    padding-top: 2em;
    padding-bottom: 5em;
    color: #4b7d8f
}

img {
    width: 100%;
}

@media screen and (max-width:750px) {
    #site_wrap {
        grid-template-rows:
            min-content min-content min-content min-content min-content 1fr;

        grid-template-areas:
            "header header header header header header"
            "menu_buttons menu_buttons menu_buttons menu_buttons menu_buttons menu_buttons"
            "featured_header featured_header featured_header featured_header featured_header featured_header"
            "content_one content_one content_one content_one content_one content_one "
            "content_two content_two content_two content_two content_two content_two"
            "footer footer footer footer footer footer"
    }

    .header h1 {
        font-size: 25pt;
        padding: 25px 0 5px 0;
    }

    .header h2 {
        font-size: 20pt;
    }

    .menu_buttons .nav {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menu_buttons .nav a {
        text-decoration: none;
        border: 2px solid #e5e5e5;
        color: #e5e5e5;
        padding: 10px 75px;
        font-size: 12pt;
        text-transform: uppercase;
        background-color: #4b7d8f;
        display: inline-block;
        margin: .5em;
    }

    .featured_header h1 {
        font-size: 20pt;
    }

    .content_one {
        flex-direction: column;
    }

    .content_one img {
        margin: 5px 5px;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        height: auto;

    }

    .content_two {
        flex-direction: column;
    }

    .content_two img {
        margin: 5px 5px;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        height: auto;
    }
}

/* Gallery Page Styles */

.featured_header .gal_nav {
    grid-area: menu_buttons;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured_header .gal_nav {
    list-style: none;
    padding-bottom: 1em;
    padding-top: 1em;
    display: flex;
}

.featured_header .gal_nav a {
    text-decoration: none;
    border: 2px solid #e5e5e5;
    color: #e5e5e5;
    padding: 20px 50px;
    margin: 0px 30px;
    font-size: 20pt;
    text-transform: uppercase;
    background-color: #282850;
    display: inline-block;
}

.featured_header .gal_nav a:hover,
.featured_header .gal_nav .active {
    background-color: #bf8665;
}

/* About Page Styles */


.content_two .about_me {
    font-size: 30pt;
    line-height: 1.5em;
    text-align: center;
    padding-bottom: 2em;
}

/* Contact Page Styles */

.featured_header h2 {
    font-size: 40pt;
    text-align: center;
    text-transform: uppercase;
    font-weight: lighter;
    color: #282850
}

.content_one .contact_info {
    font-size: 40pt;
    line-height: 1.5em;
    list-style: none;
    color: #282850;
}

/* Graphic Design Page Styles */

.featured_header .gal_nav_two {
    grid-area: menu_buttons;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured_header .gal_nav_two {
    list-style: none;
    padding-bottom: 1em;
    padding-top: 1em;
    display: flex;
}

.featured_header .gal_nav_two a {
    text-decoration: none;
    border: 2px solid #e5e5e5;
    color: #e5e5e5;
    padding: 20px 50px;
    margin: 0px 30px;
    font-size: 20pt;
    text-transform: uppercase;
    background-color: #282850;
    display: inline-block;
}

.featured_header .gal_nav_two a:hover,
.featured_header .gal_nav_two .active {
    background-color: #bf8665;
}

.content_one img {
    grid-area: content_one;
    display: flex;
}

.content_one img {
    width: 425px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 0 5px 0 5px;
}

.content_two img {
    grid-area: content_one;
    display: flex;
}

.content_two img {
    width: 425px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 0 5px 0 5px;
}