html {
	font-family: System, monospace;
	user-select: none;
}

body {
	cursor: wait;
}

video {
	object-fit: cover;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -100;
	filter: brightness(0.5);
}

#xo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	height: 150px;
	background-color: rgba(235, 194, 255, 0.1);


	text-align: center;
	box-shadow: 10px 10px 25px 5px black;
	cursor: url(mid.cur), auto;

}

legend {
	text-align: left;
	font-size: 0.9em;
}

#txt {
	position: absolute;
	color: white;
	font-size: 1.5em;
	//line-height: 150px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-shadow: 1px 1px 2.5px black;
	transition: 0.1s linear;
	text-decoration: none;
}

#mu {
	color: white;
	display: inline-block;
	position: absolute;
	bottom: 5%;
	right: 2.5%;
	padding: 1em;
	margin: -1em;
}

#txt:hover {
	text-shadow: 2.5px 2.5px 4px black;
	color: pink;
}