f, .h-flip {
    display: inline-block;
    -moz-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

body {
    font-family: 'Balthazar', sans-serif;
}

h2, h3, h4, h5, h6 {
    font-family: 'Yatra One', sans-serif;
}

h1::first-letter, 
h2::first-letter, 
h3::first-letter, 
h4::first-letter, 
h5::first-letter, 
h6::first-letter {
    color: var(--highlight-color);
}

/* ########## */
/* # HEADER # */
/* ########## */

body > header > h1,
body > header > h1 * {
    z-index: 2;

    font-family: 'Nosifer', sans-serif;
    line-height: 1.6em;

    font-family: 'Germania One', sans-serif;
    line-height: 1.3em;
/*
    font-family: 'K2D', sans-serif;
    line-height: 1.2em;
/*
    font-family: 'Balthazar', sans-serif;
    line-height: 1.3em;
*/
}

.R {
    font-family: 'Metamorphous', sans-serif;
}

/* body > header > h1, */
body > header > h1 *,
body > nav:before,
body > nav:after {
    font-family: 'Metamorphous', sans-serif;
}

body > header > h1:before {
    content: '';
    position: absolute;
    left:   50%;
    margin-left: -5em;
    z-index: -1;

    height: 1em;
    width: 10em;
    border-bottom: black solid .07em;
}

body > header > .asterisk {
    position: absolute;
    color: #721818;
    top: 1.1em;
    left:   50%;
    margin-left: 4.5em;
    font-size: 2em;
}

body > header > p {
    position: absolute;
    bottom: 0;
    right:   50%;
    margin-right: -20.4em;
}

/* ########### */
/* #   NAV   # */
/* ########### */

nav {
    position: absolute;
    top: 8.5em;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--background-color);
    z-index: 200;
    padding-top: 1em;
    padding-bottom: 1em;
}

nav.sticky {
    position: fixed;
    top: 0;

    filter: drop-shadow(0 .3em .3em rgba(100,100,100,.5));
}

nav:before,
nav:after {
    content: 'R';
    color: transparent;
    line-height: 1em;
    vertical-align: middle;
    width: 1.5em;
    font-size: 2em;
    padding-left: .3em;
    transition: color .5s;
}

nav:before {
    -moz-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

nav.sticky:before,
nav.sticky:after {
    color: var(--highlight-color);
}

nav > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
    grid-auto-flow: dense;
    grid-gap: 1rem;
    width: 85%;
}

nav > div > a {
    display: block;
    height: 1.8em;
    line-height: 1.8em;
    background-color: transparent;
    color: var(--color);
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    border-radius: .2em;
    border: .1em solid var(--card-background);
    transition: all .2s;
}
nav > div > a:hover {
    background-color: var(--card-background);
    border: .1em solid var(--card-background);
}
nav > div > a:active,
nav > div > a:target,
nav > div > a.selected {
    background-color: var(--highlight-color);
    color: var(--background-color);
}

@media only screen and (max-width: 49.15rem) {
    body {
        grid-template-rows:  9.5em 6em 1fr;
    }

    body > header > p {
        right: 0;
        margin-right: 0;
    }

    nav > div {
        grid-template-columns: repeat(2, minmax(9.5rem, 1fr));
    }

    nav:before,
    nav:after {
        position: absolute;
        padding-left: 1.5em;
        font-size: 5em;
        z-index: -1;
    }
}

@media only screen and (max-width: 24.5em) {
    body {
        grid-template-rows:  9.5em 12em 1fr;
    }

    nav > div {
        grid-template-columns: 1fr;
    }

    nav:before,
    nav:after {
        display: none;
    }
}

/* ########### */
/* # ARTICLE # */
/* ########### */

article > content img {
    position: relative;
    display: block;
    max-width: 60%;
    margin: auto;
    padding: .5em;

    filter: drop-shadow(.3em .3em .3em rgba(100,100,100,.5));
    object-fit: contain;
}

/*
article.clan-member > header > h2:before {
    content: '';
    padding-right: .3em;
}
*/

article.full > content img {
    max-width: 60%;
    max-height: 60%;
}

.spotify {
    cursor: pointer;
    width: 100%; 
    height: 100%;
    max-width: 100%;
    padding: 0;
    filter: drop-shadow(.3em .3em .3em rgba(100,100,100,.5));
}