/* Defaults */

:root {
    --orange: #df6445;
    --darkblue: #2c6887;
    --lightblue: #8abcd4;
    --medblue: #6093ac;
}

html,
body {
    margin: 0;
    padding: 0;
    background: white;
}

body {
    font-family: effra, sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: effra, sans-serif;
    font-weight: 400;
    line-height: 1;
    margin: 2.4rem 0 1.3rem;
    letter-spacing: 1px;
    color: var(--darkblue);
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 2.0rem;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.6rem;
}

h6 {
    font-size: 1.5rem;
}

img {
    max-width: 100%;
}

a {
    color: var(--darkblue);
    font-weight: 500;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

a:hover,
a:focus {
    text-decoration: none;
    color: var(--lightblue);
}

/* Buttons */

.button {
    font-weight: 400;
    color: white;
    background: transparent;
    border: solid white 2px;
    padding: 1rem 1.4rem;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin: 2rem 0;
    text-align: center;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.button:hover,
.button:focus {
    background: white;
    color: var(--darkblue);
}

.button.orange:hover,
.button.orange:focus {
    color: var(--orange);
}

.button.lightblue:hover,
.button.lightblue:focus {
    color: var(--lightblue);
}

/* Page Wrapper Basics */

.wrap {
    margin: 0 auto;
    display: block;
    width: 90%;
    max-width: 1400px;
}

/* Landing Section */

.landing {
    width: 100%;
    display: block;
    margin: 0;
    background-image: url(images/landing-background.jpg);
    background-size: cover;
    background-position: 50% 50%;
    background-attachment: scroll;
    min-height: 70vh;
}

.landinglogo {
    background: white;
    width: 350px;
    max-width: 75%;
    margin: 0;
    overflow: hidden;
    box-sizing: border-box;
    padding: 1.5rem;
}

/* August 8 Section */

.august {
    padding: 4rem 0;
}

.august p {
    font-size: 1.3rem;
}

.august img {
    width: 600px;
    max-width: 100%;
    margin: 2rem auto;
    display: block;
}

/* Letter from Board */

.headlinebar {
    background: var(--orange);
    padding: 1.2rem 0;
}

.headlinebar h2 {
    color: white;
}

.letter-content {
    padding: 2rem 0;
}

/* Quote Section */

.quote {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    background: var(--darkblue);
    text-align: right;
}

.quote>div {
    padding: 4rem;
}

.quote p {
    font-size: 1.8rem;
    color: white;
    text-align: right;
}

.quote p.quotesource {
    font-size: 1.4rem;
}

/* Link Footer */

.link-footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0;
}

.link-footer>div {
    padding: 4rem;
    color: white;
    text-align: left;
}

.link-footer .footer-left {
    background: var(--lightblue);
}

.link-footer .footer-mid {
    background: var(--orange);
}

.link-footer .footer-right {
    background: var(--medblue);
}

.link-footer .footer-left h2,
.link-footer .footer-mid h2,
.link-footer .footer-right h2 {
    color: white;
    text-transform: uppercase;
}

.link-footer h3.subtitle {
    color: white;
    font-size: 1.3rem;
    font-style: italic;
}

/* Footer */

footer img {
    margin: 3rem auto;
    width: 225px;
    max-width: 80%;
    display: block;
}

.disclaim {
    text-align: center;
    display: block;
    margin: 3rem auto;
    text-align: center;
}

.disclaim p {
    color: var(--darkblue);
    font-size: 1rem;
    display: block;
    width: auto;
}

/* Media Queries */

@media only screen and (max-width: 1200px) {
    .quote>div {
        padding: 1.5rem;
    }

    .quote p {
        font-size: 1.5rem;
        color: white;
        text-align: right;
    }

    .quote p.quotesource {
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 1000px) {
    .link-footer {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 800px) {
    .quote {
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
    }

    .quote .quoteimg {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 600px) {

    .link-footer .footer-left h2,
    .link-footer .footer-mid h2,
    .link-footer .footer-right h2 {
        font-size: 1.6rem;
    }
}