.typewriter h1 {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .5em solid white; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin-top: 40px; /* Gives that scrolling effect as the typing happens */
  letter-spacing: .10em; /* Adjust as needed */
  animation: 
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;
    color: white;
    text-align: center;
    font-size: 18px;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  30% { border-color: white; }
}

.nbr_job
{
    color: #0b77bd;
}
