.typewriter {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 2rem;
    position: relative;
    display: block;
    opacity: 0; /* hidden initially, for fade-in */
    border: 1px solid black;
    border-top-color: #646363;
    height: 50px;
    /*background: linear-gradient(to right, #4e497e, #f19c44);*/
    background: linear-gradient(to left,#4e497e,#a4eea8,#fa880e);
    text-align:center;
    padding-top: 15px;
}

#tw-start {
    font-weight: 300; /* thin */
}

#tw-word {
    font-weight: 700; /* bold */
    /* no opacity transitions here */
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* cursor styling */
.cursor {
    
    display: inline-block;
    animation: blink 0.8s infinite;
    font-weight: 300;
}




