body {
	background-color: var(--bg);
	color: var(--fg);
}

#charbox {
	width: 100%;
	font-size: 30px;
	max-width: 1200px;
	line-height: 40px;
	user-select: none;
	position: relative;
	letter-spacing: 3px;
	pointer-events: none;
	font-family: 'Courier New', Courier, monospace;
}

.typed_correct {
	color: #575757;
}

.typed_incorrect {
	border-bottom: solid 1px #f91f1f !important;
	/* background-color: #f91f1f; */
	color: #575757;
}

.typing {
	border-bottom: solid 1px #ffffff !important;
}

#charbox span {
	transition: filter 200ms 100ms;
	filter: blur(var(--chars-blur));
	border-bottom: solid 1px #ffffff00;
}

#statbox {
	top: 0px;
	left: 0px;
	width: 100%;
	padding: 3%;
	z-index: 99;
	height: 100%;
	display: flex;
	position: absolute;
	opacity: var(--stats-opacity);
	justify-content: space-around;
	transition: opacity 200ms 100ms;
	font-family: Arial, Helvetica, sans-serif;
}

#statbox .stat {
	text-align: center;
}
