@font-face{
    font-family: Walkway;
    src: url('../fonts/Walkway_SemiBold-webfont.woff') format('woff');
}

@font-face{
    font-family: WalkwayBold;
    src: url('../fonts/Walkway_Bold-webfont.woff') format('woff');
}

@font-face{
    font-family: WalkwayUltraBold;
    src: url('../fonts/Walkway_UltraBold-webfont.woff') format('woff');
}

body {
    background: white;
    color: #333;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Walkway, Helvetica, Arial, sans-serif;
    font-size: 13pt;
    line-height: 130%;
}

h1 {
    font-family: WalkwayUltraBold, Helvetica, Arial, sans-serif;
    font-size: 24pt;
    letter-spacing: 1.4pt;
    margin: 1em 0 0 0;
    text-align: center;
}

h2 {
    font-family: WalkwayBold, Helvetica, Arial, sans-serif;
    font-size: 18pt;
    letter-spacing: 1.2pt;
    margin-top: 0;
}

header {
    text-align: center;
}

footer {
    font-size: 10pt;
    margin: 2em 0 1em 0;
    text-align: center;
    color: #777;
}

.logo {
    height: 4em;
    margin: 1em;
}

nav a {
    margin: 0 1em;
    text-transform: uppercase;
    letter-spacing: 1pt;
    display: inline-block;
    width: 5em;
}

a, a:hover, a:visited, a:link, a:active {
    color: #333;
    text-decoration: none;
}

section {
    margin: 2em auto 5em auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 80%;
    max-width: 70em;
}

section > div {
    max-width: 45%;
    flex: 1;
}

section.gallery > div {
    min-width: 45%;
    max-width: 45%;
    width: 45%;
    margin: 1em 2.5%;
}

section.gallery > div.title {
    display: block;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center;
}

section img {
    width: 100%;
    cursor: pointer;
}

section.about > div:first-child {
    text-align: right;
}

section.about img {
    width: 50%;
}

section.about h2 {
    margin-top: 1em;
}

section p {
    max-width: 30em;
}

section.hero {
    position: relative;
}

section.hero > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    flex: 0;
}

#blowup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: rgba(0,0,0,.8);
    padding: 1em;
    box-sizing: border-box;
}

#blowup-image {
    height: 100%;
    border: .5em solid white;
    box-sizing: border-box;
}

#blowup-image-orig {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 10%;
    height: 10%;
    visibility: hidden;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 10pt;
        box-sizing: border-box;
    }

    .logo {
        height: 3em;
    }

    h1 {
        font-size: 14pt;
        margin: 0.5em 0;
    }

    h2 {
        font-size: 12pt;
    }

    section {
        display: block;
        margin: 1em 0;
        padding: 0;
        width: 100%;
    }

    section > div, section.gallery > div {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        flex: 0;
        margin: 0;
        padding: 0;
    }

    section img {
        box-sizing: border-box;
        padding: 0 1em 1em 1em;
    }

    section.about > div:first-child {
        display: none;
    }

    section.about > div {
        width: 60%;
        padding: 0 15%;
        margin-top: 2em;
    }

    footer {
        margin-top: 1em;
    }
}
