@keyframes space {
	to {
		width: .2em;
	}
}
@keyframes dot {
	to {
		opacity: 0;
		max-width: 0;
	}
}
@keyframes r {
	to {
		opacity: 1;
	}
}
#logo {
	font-family: "Helvetica";
    font-size: 38px;
}
#space {
	display: inline-block;
	animation: space .4s 2.7s forwards;
	width: 0;
	padding: 0;
	margin: 0;
}
#dot {
	display: inline-block;
	animation: dot .4s 2s forwards;
	max-width: 1em;
	opacity: 1;
}
#r {
	animation: r .2s 2.4s forwards;
	opacity: 0;
}