@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');

body {
	background: #121212;
}

p {
  border-right: solid 3px rgba(0,255,0,.75);
  white-space: nowrap;
  overflow: hidden;    
  font-family: 'Source Code Pro', monospace;  
  font-size: 1.75em;
  color: rgba(255,255,255,.70);
  margin: 0;
  padding:0;
  text-align: center;
  position: absolute;
  top: 50%;
  left:50%;
  transform: translateX(-50%) translateY(-50%);
}

p {
  animation: animated-text 2s steps(20,end) 1s 1 normal both,
             animated-cursor 600ms steps(33,end) infinite;
}

@keyframes animated-text{
  from{width: 0;}
  to{width: 5em;}
}

@keyframes animated-cursor{
  from{border-right-color: rgba(0,255,0,.75);}
  to{border-right-color: transparent;}
}

@keyframes cssAnimation {
  to   { visibility: visible; }
}

/*.nx-c {
	min-height: 100%;
	min-height: 100vh;

	display: -webkit-flex;
	display: flex;

	-webkit-flex-direction: column;
	flex-direction: column;

	align-items: center;
	text-align: center;

	-webkit-justify-content: center;
	justify-content: center;
}

img {
	margin: auto;
}*/