.typewriter p {
    color: #e1bd1f;
    font-family: 'Poppins', sans-serif;
    max-width: fit-content;
    overflow: hidden;
    /* Ensures the content is not revealed until the animation */
    border-right: .045em solid white;
    /* The typewriter cursor */
    white-space: nowrap;
    /* Keeps the content on a single line */
    margin: 0;

    /* Gives that scrolling effect as the typing happens */
    animation:
        typing-erase 5s steps(80, end),
        blink-caret .5s step-end infinite;
}

/* The typing effect */
@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 75%
    }
}


@keyframes typing-erase {

    0% {
        width: 0
    }

    25%,
    28% {
        width: 100%
    }

    35%,
    65% {
        width: 0
    }

    76%,
    100% {
        width: 100%
    }
}


/* The typewriter cursor effect */
@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: white;
    }
}

@media only screen and (max-width: 750px) {

    @keyframes typing {
        from {
            width: 0
        }

        to {
            width: 100%
        }
    }
}