.main {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	flex-direction: column
}
#testArea {
	width: min(500px, 100% - 2px);
	height: 300px;
	border: 1px solid #000;
	border-radius: 5px;
	position: relative;
	user-select: none;
	-webkit-user-drag: none;
	-moz-user-select: none
}
#testArea > * {
	pointer-events: none
}
#testDisplay {
	width: 100%;
	height: 100%;
	image-rendering: pixelated;
	image-rendering: crisp-edges
}
#testText {
	width: 100%;
	height: 100%;
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	justify-content: center;
	align-items: center
}
button {
	border: 2px solid #000;
	border-radius: 5px;
	padding: 8px 16px;
	cursor: pointer
}
#timeline {
	width: min(500px, 100% - 2px);
	height: 10px;
	border: 1px solid #000;
	border-radius: 5px;
	position: relative
}
.timedot {
	position: absolute;
	top: 0;
	left: calc(var(--place) * (100% - 4px));
	width: 4px;
	height: 100%;
	background-color: #dc143c
}
