<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.box {
	width: 100%;
	margin: 20px auto;
}

#title {
	height: 30px;
	display: flex;
	position: absolute;
	top: 0px;
}

#title .tbox {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	border: none;
	background-color: transparent;
	font-size: 12px;
	outline: none;
	cursor: pointer;
	border-bottom: 1px solid lightgray;
}

#game {
	top: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: auto;
	position: absolute;
	bottom: 0px;
}

#game #bg {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-image: url("../img/t.jpg");
	background-position: center center;
	background-size: 100% 100%;
	filter: blur(20px);
}

#box {
	width: 100px;
	height: 100px;
	background-color: rgba(255, 255, 255, 0.5);
	position: absolute;
}
.item{
	position: absolute;
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-color: rgba(255,255,255,0.5);
	outline: 1px solid black;
}
#img {
	display: none !important;
}
.win{
	outline: none;
}
</pre></body></html>