body {
	background-color: #efefef;
}

div.logo img {
	display: block;
    margin: 0 auto;
}

div.message {
	font-family: monospace;
	font-size: 22px;
	color: #55ab80;
	

  	display: flex;
  	justify-content: center;
  	align-items: center;
}

div.message p {
	border-right: .1em solid;
	width: 16.5em; /* fallback */
	width: 25ch; /* # of chars */
	margin: 2em 1em;
	white-space: nowrap;
	overflow: hidden;
	animation: typing 1.5s steps(25, end), /* # of steps = # of chars */
	           blink-caret .3s step-end infinite alternate;
}

@keyframes typing { from { width: 0; } }




