/**
 * jQuery Incipit
 * A lightweight jQuery plugin to display highly captivating loading screens.
 * https://github.com/justineSimmet/jquery-incipit
 *
 * Licensed under the MIT license.
 * Copyright 2017 Justine Simmet
 * https://github.com/justineSimmet
 */

#incipitContent{
    display: none;
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    z-index: 20000;
    opacity: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-family: Times, "Times New Roman", Georgia, serif;
    color: #000000;
    border-left: none;
    border-right: none;
}

#incipitContent p {
    font-style: normal;
    color: #000000;
    margin: 0;
}

#incipitContent blockquote {
    opacity: 0;
    text-align: center;
    font-size: 1.25rem;
    position: relative;
    quotes: "\201C""\201D""\2018""\2019";
    margin: 0;
    margin-top: 2rem;
    padding: 0.5rem 2rem;
}

#incipitContent blockquote:after {
    content: open-quote;
    font-size: 5rem;
    font-style: normal;
    position: absolute;
    left: 50%;
    bottom: calc(100% - 20px);
    background: #fff;
    height: 55px;
    width: 55px;
    line-height: normal;
    text-align: center;
    transform: translateX(-50%);
}

#incipitContent blockquote .incipit-text{
    font-size: 1.5rem;
    line-height: 2.25rem;
}

#incipitContent blockquote .incipit-source{
    font-size: 1.2rem;
    text-align: right;
}

#incipitContent blockquote .incipit-source span{
    font-style: italic;
}

#incipitContent blockquote .incipit-source::before{
content: "\2014 \00A0";
}

@media screen and (min-width: 980px){
    #incipitContent blockquote{
        max-width: 50%;
        padding: 1rem;
    }
}