:root {
    --background-color: #FDFDEF;
    --accent-color:#852291;
}

@font-face {
    font-family: Cormorant;
    src: url(/fonts/cormorant-regular.woff2) format('woff2'), url(/fonts/cormorant-regular.woff) format('woff')
}

@font-face {
    font-family: Cormorant;
    src: url(/fonts/cormorant-bold.woff2) format('woff2'), url(/fonts/cormorant-bold.woff) format('woff');
    font-weight:700
}

@font-face {
    font-family: Cormorant;
    src: url(/fonts/cormorant-italic.woff2) format('woff2'), url(/fonts/cormorant-italic.woff) format('woff');
    font-style:italic
}

* {
    box-sizing:border-box
}

html {
    font-size:22px
}

body {
    background: #c5a028 linear-gradient(to right, #d4af37 0, #c5a028 100%);
    font-family: Cormorant, sans-serif;
    margin: 2px 0 2px 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height:1.4
}

.wrapper {
    background: var(--background-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    padding: 0 20px;
}

figure {
    margin:0 0 2rem 0
}

img {
    max-width: 100%;
    height: auto;
    display:block
}

.post__iframe > :first-child {
    width:100%
}

.post__iframe {
    position:relative
}

.post__iframe::before {
    content: "";
    display: block;
    padding-bottom:56.25%
}

.post__iframe > :first-child {
    position: absolute;
    top: 0;
    left: 0;
    height:100%
}

p {
    margin-top:0
}

a {
    color: #000;
    border-bottom: 1px solid var(--accent-color);
    text-decoration:none
}

h1 {
    font-size: 1.7rem;
    margin: 0 0 0.5em 0
}

h2 {
    font-size: 1.2rem;
    margin:1em 0
}

h3 {
    font-size: 1rem;
    margin:1.5em 0 .5rem 0
}

blockquote {
    margin:0
}

hr {
    border: 0;
    background: url(../images/hr.svg) center no-repeat;
    height: 35px;
    margin:3em 0
}

.small {
    font-size:.8rem
}

.grid {
    display: flex;
    margin-bottom:2em;
}

.column {
    flex: 1;
    padding:0 20px;
}

.single-column {
    max-width: 25em;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}
.single-column-image {
    max-width: 25em;
    margin-left: auto;
    margin-right: auto;
}

.single-column-image figure {
    max-width: 351px;
    margin: 40px auto;
}

.single-column-wide {
    max-width: 34em;
    margin: 0 auto;
}

.text-big {
    font-size: 26px;
}

.title-case {
    font-size: 14px;
    text-transform: uppercase;
}

.margin-top-big {
    margin-top: 2em;
}

@media (max-width: 445px) {
    .grid {
        display:block
    }
}

.footer-inner, header, main {
    max-width: 784px;
    margin:0 auto
}

header {
    margin: 2em auto;
    width:100%
}

header nav {
    display: flex;
    align-items: center;
    width: 100%
}

header a {
    border-bottom:1px solid transparent
}

header .nav-left, header .nav-right {
    flex:1;
    display: flex;
}

header .nav-left {
    flex-direction: row-reverse;
}

header .nav-left a {
    margin-right: 10%;
}

header .nav-right a {
    margin-left: 8%;
}

header a {
    color:#8c721e;
    text-align: center;
}

header a:hover {
    border-color:#8c721e;
}

header a.logo {
    min-width: 64px;
}

header a.logo, header a.logo:hover {
    border:none
}

main {
    margin-bottom:auto
}

.post {
    max-width: 640px;
    padding:0 20px
}

.post-title {
    font-size: 1.7rem;
    margin-bottom: .5rem;
    margin-top:0
}

.post-featured-image .credits {
    display:block
}

@media screen and (min-width: 1200px) {
    .post {
        max-width: 1840px;
        padding: 0 20px;
        display:flex
    }

    .post article {
        margin:0 50px
    }

    .post-featured-image {
        align-self:center
    }
}

.flex1 {
    flex:1
}

.quote {
    padding: 1em 0 1em 2em;
}

blockquote p {
    margin: 0;
}

blockquote p+p {
    text-indent: 1.5em;
    margin-top: 0;
}

blockquote footer {
    font-size:.8rem;
    text-align: right;
}

.footer {
    background: var(--accent-color);
    text-align: center;
    color: var(--background-color);
    padding: 30px 60px; /* make room for menu button */
    margin-top:2em
}

.footer a {
    color: var(--background-color);
    border-bottom:1px solid transparent
}

.footer a:hover {
    border-color:var(--background-color)
}

.footer-nav {
    list-style-type: none;
    margin: 0 0 1em 0;
    padding:0
}

.copyright {
    font-size: 1em;
    padding-top: .5em;
    padding-bottom: 3em;
    display:block
}

.align-right {
    text-align:right
}

.align-left {
    text-align:left
}

img.align-center {
    display: block;
    margin:0 auto
}

img.align-right {
    float:right
}

img.align-left {
    float:left
}

.shadow {
    box-shadow: -4px 8px 16px rgba(0, 0, 0, .2)
}

.menu-link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 100px;
    font-size: 14px;
    text-transform: uppercase;
    bottom: 10px;
    right: 10px;
    flex-direction: column;
    line-height: 0.7;
    background: rgba(132, 34, 145, 0.13);
}
.menu-link:hover {
    border-width: 2px;
}
.menu-link:active {
    bottom: 9px;
}
.friends {
    margin-bottom: 1em;
}
.friends a {
    color: #ebc752;
}
.friends a:hover {
    border-color: #ebc752;
}


.text-center {
    text-align: center;
}
.pt-4 {
    padding-top: 1rem;
}
.pb-4 {
    padding-bottom: 1rem;
}
.whitespace-nowrap {
    white-space: nowrap;
}
.chrome {
    padding-left: 20px;
    padding-right: 20px;
}

