/* Google Fonts */
@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro);

.introduce.is-active {
    position: fixed;
    top: 0;
    right: 0;
    left:0;
    bottom: 0;
    z-index: 101;
    color: rgba(255, 255, 255, .75);
    font-family: 'Anonymous Pro', monospace;
    background-color: rgb(25, 25, 25);
    pointer-events: all;
    opacity: 1;
    width: 100%;
    height: 100%;

}

.introduce {
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* Animation */
.anim-typewriter {
    animation: typewriter 3s steps(44) 1s 1 normal both,
        blinkTextCursor 1000ms steps(44) infinite normal;
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 23em;
    }
}

@keyframes blinkTextCursor {
    from {
        border-right-color: rgba(255, 255, 255, .75);
    }

    to {
        border-right-color: transparent;
    }
}

.line {
    position: relative;
    top: 50%;
    width: 0;
    margin: 0 auto;
    border-right: 2px solid rgba(255, 255, 255, .75);
    font-size: 180%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);
}




