/* -- BASE STYLES --*/
html {
    font-size: 16px;
}
body {
    color: #333;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-container{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: row wrap;
}
h1, h2, h3, h4 {
    text-transform: uppercase;
    font-weight: 700;
}
h1 {
    font-size: 2em;
}
h2 {
    font-size: 1.875em;
}
h3 {
    font-size: 1.5em;
}
h4 {
    font-size: 1.125em;
}
p {
    font-size: 1em;
    line-height: 1.3125em;
}
img {
    width: 100%;
}
/* -- HEADER -- */
.background-image {
    background: url("../img/big-prairie.jpg") bottom no-repeat #e6b950;
    background-size: cover;
    min-height: 600px;
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    width: 100%;
}
header {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
	flex-grow: 1;
}
header h1 {
    color: #fff;
    font-size: 1.5em;
    width: 100%;
    text-align: center;
    text-shadow: 2px 2px 10px #333;
    border-bottom: 3px solid rgb(34, 10, 0, 0.4);
    padding-bottom: 0.75em;
    margin: 0;
}
header nav {
    margin-top: -2em;
    width: 100%;
}
header nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}
header nav ul li {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.875em;
    padding: 0.875em 0;
}
header nav ul li a {
    text-decoration: none;
    text-shadow: 2px 2px 10px #333;
    color: #fff;
}
header nav ul li a:hover {
    color: #220a00;
}
/* -- INTRO -- */
.tagline {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    width: 100%;
}
.tagline h1 {
    color: #fff;
    font-size: 2em;
    text-shadow: 4px 4px 12px #333;
    margin: 0;
    padding-bottom: 0.25em;
    width: 80%;
    overflow-wrap: break-word;
}
.tagline h2 {
    color: #fff;
    font-size: 1em;
    font-weight: 400;
    text-shadow: 4px 4px 12px #333;
    margin: 0;
    width: 80%;
}
.transition-1 {
    height: 10px;
    width: 100%;
    background-image: linear-gradient(#220a00, #93827f);
}
/* -- PORTFOLIO -- */
.portfolio-section {
    background-color: #93827f;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 0;
}
.portfolio-section h2 {
    color: #ffefd3;
    text-shadow: 2px 2px 5px #333;
}
.project-title {
    margin: 1em 0 0 0;
    text-shadow: 1px 1px 10px #ffefd3;
}
.portfolio-section a {
    text-decoration: none;
    font-weight: 700;
    color: #ffefd3;
    text-shadow: 2px 2px 5px #333;
}
.portfolio-section a:hover {
    color: #111;
}
.project-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 2em;
    width: 90%;
}
.project-item img {
    border: 3px solid #bdc4a7;
    border-radius: 0.5em;
}
.project-description {
    text-align: center;
}
.project-story {
    margin: 0;
    padding-top: 1em;
}
.portfolio-section h3 {
    text-align: center;
    width: 90%;
}
.portfolio-closing {
    text-align: center;
    text-transform: none;
    width: 90%;
    margin: 0;
    padding: 2em 0 2em 0;
}
.transition-2 {
    height: 20px;
    width: 100%;
    background-image: linear-gradient(#93827f, #bdc4a7);
}
/* -- ABOUT -- */
.about-section {
    background-color: #bdc4a7;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 2em;
}
.about-section h2 {
    color: #ffefd3;
    text-shadow: 2px 2px 10px #333;
    text-align: center;
    padding: 2em 0;
    width: 100%;
}
.about-content {
    width: 90%;
    padding-bottom: 4em;
}
.about-content img {
    border: 3px solid #aaa;
    border-radius: 0.5em;
}
.about-content p {
    padding: 0;
    width: 100%;
}
.about-content a {
    text-decoration: none;
    font-weight: 700;
    color: #220a00;
}
.about-content a:hover {
    color: #ffefd3;
}
.transition-3 {
    height: 20px;
    width: 100%;
    background-image: linear-gradient(#bdc4a7, #ffefd3);
}
/* -- FOOTER -- */
footer {
    background-color: #ffefd3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}
.footer-content h2 {
    text-align: center;
    text-shadow: 2px 2px 5px #93827f;
    margin-bottom: 0;
    padding: 2em 0 1em 0;
}
.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.contact-content h4 {
    font-size: 1.25em;
    text-align: center;
    text-transform: none;
    width: 90%;
}
.email {
    color: #93827f;
    font-size: 1.5em;
    font-weight: 700;
    padding: 1em 0;
    text-align: center;
    text-decoration: none;
    width: 100%;
}
.email:hover {
    color: #333;
}
.icons {
    font-size: 2em;
    text-decoration: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 70%;
}
.icons a {
    color: #93827f;
}
.icons a:hover {
    color: #333;
}
.copyright {
    text-align: center;
    width: 100%;
}

/* ---------- Screens larger than 640px wide ---------- */
@media only screen and (min-width: 640px) {
    /* -- HEADER -- */
    .background-image {
        min-height: 900px;
    }
    /* -- INTRO -- */
    .tagline h1 {
        font-size: 2.5em;
        padding-bottom: 1em;
    }
    .tagline h2 {
        font-size: 1.5em;
        padding-bottom: 1.5em;
    }
    /* -- ABOUT -- */
    .about-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .about-content img {
        width: 50%;
        margin-right: 1em;
    }
    .about-bio {
        width: 50%;
        font-size: 1.2em;
        margin-left: 1em;
    }
    /* -- PORTFOLIO -- */
    .project-item {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .flex-item {
        width: 50%;
        margin: 0 1em;
    }
    .switch {
        flex-direction: row-reverse;
    }
    .project-story {
        padding: 0;
    }
    /* -- CONTACT -- */
    .icons {
        width: 40%;
    }
}

/* ---------- Screens larger than 1024px wide ---------- */
@media only screen and (min-width: 1024px) {
    /* -- HEADER -- */
    .background-image {
        min-height: 750px;
    }
    header {
        justify-content: space-between;
    }
    header h1 {
        border-bottom: none;
        text-align: left;
        margin: -1.5em 0 0 2em;
        padding: 0;
        width: 50%;
    }
    header nav {
        margin-top: -2em;
        width: 30%;
    }
    /* -- INTRO -- */
    .tagline h2 {
        width: 70%;
    }
    /* -- ABOUT -- */
    .about-content {
        justify-content: space-around;
    }
    .about-content img {
        margin: 0;
        width: 33.333%;
    }
    .about-bio {
        margin: 0;
    }
    /* -- PORTFOLIO -- */
    .project-story {
        font-size: 1.25em;
    }
    .portfolio-closing {
        font-size: 1.5em;
    }
    /* -- FOOTER -- */
    .contact-content h4 {
        font-size: 1.5em;
    }
}
