html {
	scroll-behavior: smooth;
}

body {
	background-color: black;
}

pre {
	color: yellowgreen;
	line-height: 15px;
}

p {
	color: white;
	font-family: "Helvetica"; 
}

.typewriter pre {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .15em solid orange; /* The typwriter cursor */
  animation: 
    typing 15s steps(201, end),
    blink-caret .75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}