p {
 color: rgba(0, 255, 0, 0.8);
}
.typing-text {
  display:none;
  margin: 0;
	width: 59ch;
	white-space: nowrap;
	overflow: hidden;
	border-right: 5px solid rgba(0, 255, 0, 0.5);
	animation: typing 5s steps(59),
	           caret 1s steps(1) infinite;
}

@keyframes typing {
	from { width: 0 }
}

@keyframes caret {
	50% { border-right-color: transparent; }
}









/*Visual demo stuff */
.terminal{
  padding: 10px;
  width: 100%;
  height: auto;
}

.frame {
  background: #000;
  width: 720px;
  margin: auto;
  height: 300px;
  border: 3px solid#ddd;
}
.terminal-header {
  background: #ddd;
}

h2 {
  margin:0;
  font: 200% monospace;
}

.trick-header {
  margin-top: -20px;
  margin-bottom: 30px;
}
h1 {
  padding: 30px;
	background: #000;
	color: rgba(0, 255, 0, 0.8);
  text-align: center;
}

body {
  margin:0;
  font: 100% Consolas, Monaco, monospace;
  background: #1d1f20;
}