*{
	margin: 0;
	padding: 0;
}
body{
	width: 100vw;
	height: 100vh;
}
.page{
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	width: 100vw;
	height: 100vh;
}
.show{
	display: block !important;
}

.editor{
	display: none;
	box-sizing: border-box;
	position: absolute;
	top: 50vh;
	left: 0;
	right: 0;
	z-index: 999;
	margin: auto;
	width: 70vw;
	height: 45vw;
	/* border: 2px solid red; */
}
.code{
	box-sizing: border-box;
	padding: 4vw;
	width: 100%;
	/* height: 80%; */
	height: 90%;
	font-size: 5vw;
	color: white;
	background: rgba(0, 0, 0, .8);
}
.editor button{
	width: 100%;
	height: 20%;
}


