:root {
    --black: #111315;
    --grey: #717171;
    --white: #ffffff;
}

body, html {
    color: var(--grey);
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    padding: 0;
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 140%;
}

h2 {
    text-transform: uppercase;
    font-size: 0.8em;
}

a {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    width: 100%;
    text-decoration: none;
    font-size: 1.6em;
    padding: 0.5em 0;
    text-align: center;
    text-transform: uppercase;
    margin: 1em 0;
    border: 4px solid var(--black);
    border-collapse: collapse;
    transition: all .4s ease-in-out;
    border-radius: 0.1em;
}

a:hover, a:focus, a:focus-within {
    background-color: var(--white);
    color: var(--black);
}

hr {
    border: thin solid var(--black);
    outline: none;
    width: 50%;
    display: inline-block;
    vertical-align: middle;
}

small {
    display: inline-block;
    margin-left: 2em;
    line-height: 1.6em;
}

p, h2 {
    margin-bottom: 1.2em;
}

section, header {
    font-size: 1em;
    height: 100vh;
    width: 100%;
    min-height: 100%;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: center;
    padding: 0 10vw;
}

aside, article, blockquote {
    vertical-align: top;
}

header img {
    width: 60%;
    height: auto;
    align-self: center;
    position: relative;
    transform: translate(40%);
}

blockquote {
    text-align: justify;
    font-size: 5em;
    font-family: "Gloock", serif;
    line-height: 1.2em;
    padding: 1em 0 1em 1em;
    color: var(--white);
}

footer {
    padding: 2em 0;
    color: var(--grey);
    font-size: 0.8em;
}

.singular {
    align-content: center;
    grid-template-columns: 1fr;
}

.singular article {
    max-width: 50%;
    position: relative;
    transform: translate(50%);
}

.symbol {
    height: 1em;
    width: auto;
}

.center {
    text-align: center;
}

.black_bg {
    background-color: var(--black);
    color: var(--white);
    text-shadow: 0 1px 2px rgba(255,255,255,0.1);
}

.black_bg h2 {
    color: var(--grey);
}

.white_bg {
    background-color: var(--white);
    color: var(--grey);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.grey_bg {
    background-color: var(--grey);
    color: var(--black);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.grey_bg h2 {
    color: var(--black);
}

.image_bg img {
    width: auto;
    height: 90%;
    max-height: 90vh;
    border-radius: 1em;
    display: inline-block;
}

.image_bg aside {
    align-content: center;
}

#indicator {
    background-color: var(--grey);
    width: 1px;
    height: 0;
    margin:0 0 2em 50%;
    animation: reveal 3s ease-in-out 1s 1 forwards;
}

@keyframes reveal {
    0% {
        height: 0;
    }
    100% {
        height: 6em;
    }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
    body, html {
        font-size: 14px;
    }
    section {
        height: 50vh;
        min-height: 50%;
    }
    section, header {
        font-size: 1em;
        width: auto;
        text-align: left;
        display: grid;
        grid-template-columns: 1fr;
        align-content: center;
        padding: 0 2vw;
    }
    .image_bg img {
        transform: none;
        height: 50vw;
        width: auto;
    }
    blockquote {
        font-size: 2em;
        width: 80%;
    }
    .image_bg {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }
}