<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">canvas {
	position: absolute;
	top: 0px;
	left: 0px;
	background: transparent;
}
/*
 * z-index ì†ì„±ìœ¼ë¡œ ì¸í•´ ì´ë¯¸ì§€ê°€ ê²¹ì³ì§€ë”ë¼ë„ ê°€ë&nbsp;¤ì§€ì§€ ì•Šê³&nbsp;, 
 * z-index ê°’ì´ ë†’ì€ ìš”ì†Œê°€ ìš°ì„&nbsp;ì&nbsp;ìœ¼ë¡œ ìƒë‹¨ì— ìœ„ì¹˜í•˜ê²Œ ëœë‹¤. 
 */
#background {
	z-index: -2;
}
#main {
	z-index: -1;
}
#player {
	z-index: 0;
}
.score {
	position: absolute;
	top: 5px;
	left: 840px;
	color: #FF7F00;
	text-align: right;
	font-family: Helvetica, sans-serif;
	cursor: default; 
	/*default: ê¸°ë³¸ ì»¤ì„œ ëª¨ì–‘, pointer: ì†ê°€ë½ ì»¤ì„œ ëª¨ì–‘*/
}
.game_over {
	position: absolute;
	top: 280px;
	left: 460px;
	color: #FF7F00;
	font-family: Helvetica, sans-serif;
	font-size: 30px;
	cursor: default;
	display: none;
}
.game_over #result_score {
	font-size: 30px;
	cursor: default;
	position: relative;
}
.game_over #renewalHighScore {
	visibility: hidden;
}
.game_over span {
	font-size: 20px;
	cursor: pointer;
	position: relative;
	left: 50px;
}
.game_over span span:hover {
	color: #FFD700;
}
.loading {
	position: absolute;
	top: 280px;
	left: 460px;
	color: #FF7F00;
	font-family: Helvetica, sans-serif;
	font-size: 30px;
	cursor: default;
}
.loading span:hover {
	color: #FFD700;
}</pre></body></html>