body {
	margin: 0;
}

.flex {
	display: flex;
}

.grid {
	display: grid;
}

#content {
	height: 100vh;
	background: #1b1b1b;
	justify-content: center;
	align-items: center;
}

h1 {
	color: #fff;
	font-family: 'Play', sans-serif;
	font-size: 22px;
	font-weight: 100;
}
.pro {
	text-decoration: underline;
}
.description {
	color: #6e6e6e;
}

.line {
	border-right: 2px solid rgba(255, 255, 255, .75);
	margin: 0 auto;
	white-space: nowrap;
	overflow: hidden;
	transform: translateY(-50%);
}

/* Animation */
.anim-typewriter {
	animation: typewriter 5s steps(52) 1s 1 normal both,
		blinkTextCursor 500ms steps(52) infinite normal;
}

@keyframes typewriter {
	from {
		width: 0;
	}

	to {
		width: 100%;
	}
}

@keyframes blinkTextCursor {
	from {
		border-right-color: rgba(255, 255, 255, .75);
	}

	to {
		border-right-color: transparent;
	}
}
@media (max-width: 767px) {
	h1 {
		font-size: 18px;
	}
	.description {
		font-size: 14px;
	}
}
