/* resets */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'PT Sans', arial, sans-serif;
    color: #555;
    font-size: 13pt;
}
ul {
    margin-left: 0;
}

/* global */
a, a:visited, a:link {
    color: #fe87e7;
}
.container {
    max-width: 800px;
    margin: 30px auto 0 auto;
    padding: 0 20px;
}
h1 {
    font-family: 'Concert One', cursive;
    color: #222;
}
p {
    line-height: 150%;
}
p.heading {
    font-family: 'Concert One', cursive;
    font-size: 1.2rem;
    color: #444;
    margin-bottom: .25rem;
    padding-bottom: 0;
}
p.heading + p {
    padding-top: 0;
    margin: 0;
}

/* index */
#index .cover {
    background-image: url("../../../assets/images/cover.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    height: 60vw;
    max-height: 400px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    margin-top: 3vw;
}
#index .cover_wrapper {
    padding: 0 20px;
}

@media only screen and (max-width: 728px) {
    #landing .cover_wrapper {
        padding: 0;
    }
    #landing .cover {
        margin: 0;
        border-radius: 0;
        width: auto;
    }
}

/* embed */
html, #embed {
    height: 100%;
    padding: 0;
    position: relative;
}
#embed {
    background-color: #222;
    height: 100%;
    text-align: center;
}
#embed .container {
    display: flex;
    flex-direction: row;
    height: 100%;
}
#embed .embed_wrapper {
    margin: auto;
    text-align: center;
    width: 80%;
    max-width: 1000px;
}
#embed h1 {
    color: #fff;
    font-size: 1.4rem;
    margin: 0;
}
#embed p {
    margin: .25rem 0 0 0;
}
#embed a {
    color: #777;
    font-size: .9em;
}
#embed a:hover {
    color: #fff;
}



/* whitespace */
p.bio, p.desc {
    white-space: pre-line;
}