p {
	position: relative;
	left: 50%;
	margin-left: -10em;
	text-align: left;
	font-size: 14px;
	font-family: monospace;
	white-space: nowrap;
	overflow: hidden;
	width: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Inconsolata&display=swap');

.line1 {
	color: #000;
	-webkit-animation: type .5s 2s steps(20, end) forwards;
	-moz-animation: type .5s 2s steps(20, end) forwards;
	-o-animation: type .5s 2s steps(20, end) forwards;
	animation: type .5s 2s steps(20, end) forwards;
}

.line2 {
	color: #000;
	-webkit-animation: type .5s 3s steps(20, end) forwards;
	-moz-animation: type .5s 3s steps(20, end) forwards;
	-o-animation: type .5s 3s steps(20, end) forwards;
	animation: type .5s 3s steps(20, end) forwards;
}

.line3 {
	color: #000;
	-webkit-animation: type .5s 4s steps(20, end) forwards;
	-moz-animation: type .5s 4s steps(20, end) forwards;
	-o-animation: type .5s 4s steps(20, end) forwards;
	animation: type .5s 4s steps(20, end) forwards;
}

.line4 {
	color: #000;
	-webkit-animation: type .5s 5s steps(20, end) forwards;
	-moz-animation: type .5s 5s steps(20, end) forwards;
	-o-animation: type .5s 5s steps(20, end) forwards;
	animation: type .5s 5s steps(20, end) forwards;
}

.line5 {
	color: #000;
	-webkit-animation: type .5s 6s steps(20, end) forwards;
	-moz-animation: type .5s 6s steps(20, end) forwards;
	-o-animation: type .5s 6s steps(20, end) forwards;
	animation: type .5s 6s steps(20, end) forwards;
}

.line6 {
	color: #000;
	-webkit-animation: type .5s 7s steps(20, end) forwards;
	-moz-animation: type .5s 7s steps(20, end) forwards;
	-o-animation: type .5s 7s steps(20, end) forwards;
	animation: type .5s 7s steps(20, end) forwards;
}

@-webkit-keyframes type {
	to {
		width: 20em;
	}
}

@-moz-keyframes type {
	to {
		width: 20em;
	}
}

@-o-keyframes type {
	to {
		width: 20em;
	}
}

@keyframes type {
	to {
		width: 20em;
	}
}
/*----------------------------------*/

.terminal1 {
	background: transparent;
	text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.4);
	font: inherit;
	border: none;
	outline: none;
	color: inherit;
	font-size: 15px;
}

.dollar:before {
	content: '$ ';
	color: #90607D;
}