@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro);

@font-face {
    font-family: "UbuntuMono-Italic";
    src: url("fonts/UbuntuMono-Italic.ttf") format("truetype");
}

p {
    color: #FAD500;
}

.cursor {
    position: relative;
    width: 24em;
    margin: 0 auto;
    border-right: 2px solid rgba(255, 255, 255, .75);
    font-size: 30px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);
    margin-top: 10em;
}

.typewriter-animation {
    animation:
        typewriter 5s steps(50) 0.5s 1 normal both,
        blinkingCursor 900ms steps(50) infinite normal;
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 54%;
    }
}

@keyframes blinkingCursor {
    from {
        border-right-color: rgba(255, 255, 255, .75);
    }

    to {
        border-right-color: transparent;
    }
}
