* {
	font-family: "Lucida Console", monospace;
	color: #13f707;
}

body {
	margin: 0;
	padding: 0;
}

#pageContainer {
	background: black;
	width: 100%;
	height: 100vh;
	position: relative;
}

#center {
	width: 30%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

h1, h2, h3 {
	font-size: 1.75em;
	display: inline-block;
	margin: 0;
	padding: 0;
	padding-bottom: 5px;
	color: #13f707;
}

a {
	font-size: 1.25em;
	color: #13f707;
	text-decoration: none;
	border-bottom: 2px solid #13f707;
	padding-top: 5px;
}

p {
	font-size: 1.25em;
	display: inline-block;
	margin: 0;
	padding: 0;
	padding-bottom 25px;
}

#last {
	padding-right: 5px;
	border-right: 5px solid #13f707;
	animation:
    	blink-caret .5s step-end infinite;
}

@keyframes blink-caret {
	from, to { border-color: transparent }
	50% { border-color: #13f707 }
}

span {
	padding-top:5px;
}

#typewriter {
  margin: 0;
}
#typewriter:after {
  content: "▍";
  color: #13f707;
  -webkit-animation: blink 500ms linear infinite alternate;
          animation: blink 500ms linear infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 768px) {
	#center {
		width: 90%;
	}

	h1, h2 {
		font-size: 1.5em;
	}

	* {
		font-size: 1em;
		}
}
