* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--clr: #112434;
}

body {
	width: 100%;
	min-height: 100vh;
	color: #fff;
	background: var(--clr);
	display: flex;
	justify-content: center;
	align-items: center;
}

/* .container {
	position: relative;
	display: flex;
	font-size: 40px;
	line-height: 40px;
} */

.animate-wrapper {
	position: relative;
	/* height: 40px; */
	/* overflow: hidden; */
	height: 150px;
	line-height: 150px;
	font-size: 84px;
}

.text {
	list-style: none;
	position: relative;
	animation: moveUp 9s steps(1) infinite;
}

@keyframes moveUp {
	from {
		top: 0px;
	}

	100% {
		top: -120px;
	}
}

.shade {
	position: absolute;
	top: 0px;
	width: 100%;
	height: 100%;
	/* background: var(--clr); */
	background: red;
	animation: typing 3s steps(9) infinite;
}

.shade::before {
	content: '';
	width: 4px;
	height: 100%;
	background: red;
	position: absolute;
	left: 0;
	animation: cursorAnimate .4s infinite;
}

@keyframes cursorAnimate {

	0%,
	75% {
		opacity: 1;
	}

	76%,
	100% {
		opacity: 0;
	}
}

@keyframes typing {
	from {
		left: 0px;
	}

	30%,
	70% {
		left: calc(100% - 4px);
	}

	100% {
		left: 0px;
	}
}