html {
    /* A box sizing reset: https://css-tricks.com/box-sizing/ */
    box-sizing: border-box;

    /* Sets the rm size for the rest of the styles */
    font-size: 16px;
}

/*
Setting box sizing like this, allows us to define different
box-sizing settings for specific components
 */
*, *:before, *:after {
    box-sizing: inherit;
}


body {
    line-height: 1.4;
    font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

.main-content {
    font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
    /* Make the font size fluid with the screen */
    font-size: calc(1.2em + 0.3vw);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

.main-content strong,
.main-content .typography--strong {
    font-weight: 900;
}

.main-content .typography--center {
    text-align: center;
}

.main-content p,
.main-content .typography--body-md {
    font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
    font-weight: 400;
    font-size: 1.05em;
    line-height: 1.5;
    letter-spacing: -0.02em;
    margin: 1em 0 0.5em;
}
.main-content .typography--body-sm {
    font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
    font-weight: 300;
    font-size: 0.9em;
    line-height: 1.5;
    letter-spacing: -0.02em;
    margin: 1em 0 0.5em;
}
.main-content .typography--body-lg {
    font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
    font-weight: 300;
    font-size: 1.25em;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin: 1em 0 0.5em;
}
.main-content h6,
.main-content .typography--h6 {
    font-family: Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;
    font-size: 1.25em;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.01em;
    margin: 1em 0 0.5em;
}
.main-content h5,
.main-content .typography--h5 {
    font-family: Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;
    font-size: 1.32em;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.018em;
    margin: 1em 0 0.5em;
}
.main-content h4,
.main-content .typography--h4 {
    font-family: Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;
    font-size: 1.45em;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.018em;
    margin: 1em 0 0.5em;
}
.main-content h3,
.main-content .typography--h3 {
    font-family: Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;
    font-size: 1.75em;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.018em;
    margin: 1em 0 0.5em;
}
.main-content h2,
.main-content .typography--h2 {
    font-family: Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;
    font-size: 2em;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 1em 0 0.5em;
}
.main-content h1,
.main-content .typography--h1 {
    font-family: Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: normal;
    margin: 1em 0 0.5em;
}

@media screen and (min-width: 640px) {

    .main-content h5,
    .typography--h5 {
        font-size: 1.36em;
    }
    .main-content h4,
    .typography--h4 {
        font-size: 1.6em;
    }
    .main-content h3,
    .typography--h3 {
        font-size: 1.8em;
    }
    .main-content h2,
    .typography--h2 {
        font-size: 2.2em;
    }
    .main-content h1,
    .typography--h1 {
        font-size: 3em;
    }

}


body {
    margin: 0;
    /* Force the page to full height so we can stick the footer to
    the bottom of the viewport */
    min-height: 100vh;
}

/* General purpose utility to set max page width */
.site-width-container {
    margin-left: 4vw;
    margin-right: 4vw;
}

.page-section {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

@media screen and (min-width: 1024px) {

    .site-width-container {
        max-width: calc(1024px - 4rem);
        margin-left: auto;
        margin-right: auto;
    }

}

#site-layout {
    /*
    Set up a full height grid to stick the footer to the bottom of the
    viewport. This creates a top row for the header, a middle row for
    main content, and a bottom row for the footer
     */
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.container-row {
    display: flex;
    flex-direction: row;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.container-row--vertical {
    flex-direction: column;
}

.content-column--image > img {
    display: block;
    max-width: 100%;
}
@media screen and (min-width: 768px) {

    .content-columns {
        display: flex;
    }
    .content-columns__one,
    .content-columns__two {
        flex-basis: 50%;
        flex-grow: 1;
    }
    .content-columns__two {
        margin-left: 5vw;
    }

}






body {
    background-image: url(/assets/images/whitewash-background.png);
    background-repeat: repeat;
    background-size: 25%;
}

.typography--highlight {
    background-color: hsl(55, 100%, 50%);
    padding: 0 0.25em;
}
.typography--yelling {
    background-color: hsl(324, 100%, 63%);
    color: #ffffff;
    padding: 0 0.25em;
    text-transform: uppercase;
}

#site-header span.site-width-container {
    display: block;
}
#site-header__h1 {
    margin: 0;
    padding-top: 2rem;
    padding-bottom: 3rem;
    font-size: 1.2em;
    line-height: 1.4;
    font-weight: 400;
}
#site-header__name {
    background-color: hsl(55, 100%, 50%);
    color: hsl(324, 100%, 63%);
    padding: 0.125em 0.4em;
    font-size: 1.125em;
    font-weight: 700;
}
.site-header__h1-strong {
    font-weight: 700;
}
#site-header__subheading {
    margin: 0;
    text-align: center;
    padding-bottom: 4vw;
}

#site-footer {
    margin-top: 3rem;
    background-color: hsl(197, 94%, 56%);
    color: #ffffff;
    padding: 4rem 0;
}
#site-footer .site-width-container {
    max-width: 640px;
}

