/* INTRO */
#intro {
    text-align: center;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
    opacity: 1;
}

.header-cover {
    display: block;
    width: 100vw;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    -moz-object-fit: cover;
    opacity: 0;
    -webkit-animation: coverFadeIn 5s ease-out; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: coverFadeIn 5s; /* Firefox < 16 */
    -ms-animation: coverFadeIn 5s; /* Internet Explorer */
    -o-animation: coverFadeIn 5s; /* Opera < 12.1 */
    animation: coverFadeIn 5s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes coverFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes coverFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes coverFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes coverFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes coverFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#quote-scroll {
    opacity: 0;
}


/* MOUSE SCROLL */

.mouse {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 15%;
    left: 50%;
}

.mouseLayout {
    width: 15px;
    height: 28px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50px;
    position: absolute;
}

.mouseLayout::before {
    content: '';
    border: 2px solid #fff;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: drop 1.5s linear infinite;
}

.mouseLayout::after {
    content: '';
    height: 6px;
    position: absolute;
    top: 1%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    transition: all 2s ease;
}

@keyframes drop {
    0% {
        transform: translate(-50%, 2px);
        opacity: 0;
    }

    60% {
        transform: translate(-50%, 12px);
        opacity: .8;
    }

    100% {
        transform: translate(-50%, 16px);
        opacity: 1;
    }
}


.scrolldown {
    padding-top: 100px;
    font-family: 'roboto', sans-serif;
    font-size: 0.6em;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    position: absolute;
    line-height: 2em;
/*    width: 200px;*/
}


/* Hinweise */

.hints {
    position: absolute;
    display: block;
    z-index: 200;
}

.hints p {
    color: white;
  font-family: "Permanent Marker", cursive;
    font-size: 0.8em;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 2em;
}

.hinweise {
    display: flex;
    align-items: center;
    bottom: 1%;
    left: 7.5%;
    position: fixed;
    z-index: 400;
    opacity: 0;
    transition: 1s ease-in-out;
}

.kapiteluebersicht {
    display: flex;
    align-items: center;
    bottom: 7%;
    left: 7.5%;
    position: fixed;
    z-index: 400;
    opacity: 0;
    transition: 1s ease-in-out;
}

.audiosettings {
    display: flex;
    align-items: center;
    bottom: 1%;
    right: 8.5%;
    position: fixed;
    z-index: 400;
    opacity: 0;
    transition: 1s ease-in-out;
}


/* Überschrift, Text */
.iam {
    font-size: 2em;
    position: absolute;
    bottom: 1px;
    color: #a9cec2;
    width: 100%;
    margin-bottom: 250px;
    text-align: center;
    font-family: roboto, sans-serif;
    opacity: 0;
    -webkit-animation: coverFadeIn 3s ease-in-out; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: coverFadeIn 3s; /* Firefox < 16 */
    -ms-animation: coverFadeIn 3s; /* Internet Explorer */
    -o-animation: coverFadeIn 3s; /* Opera < 12.1 */
    animation: coverFadeIn 3s;
    animation-delay: 3s;
    animation-fill-mode: forwards;
}

@keyframes coverFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes coverFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes coverFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes coverFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes coverFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}


.notations h1  {
    font-size: 6em;
    position: absolute;
    color: #a9cec2;
    bottom: 1px;
    margin: 0;
    width: 100%;
    margin-bottom: 8%;
    text-align: center;
  font-family: "Permanent Marker", cursive;
    opacity: 0;
}

.last-quote {
    font-size: 6em;
    position: absolute;
    color: #a9cec2;
    bottom: 1px;
    margin: 0;
    width: 100%;
    margin-bottom: 14%;
    text-align: center;
  font-family: "Permanent Marker", cursive;
    line-height: 1em;
}

