@import url("https://fonts.googleapis.com/css?family=Fira+Mono&display=swap");

html,
body {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	overflow: hidden;
	background: #111;
}

*:focus {
	outline: none;
}

.box {
	width: 50%;
	height: 50vh;
	position: absolute;
	overflow: hidden;
	box-shadow: 0px 3px 8px #0005;
}

.box .resizers {
	width: 100%;
	height: 100%;
}

.box .resizers .resizer {
	width: 10px;
	height: 10px;
	background: lightgray;
	position: absolute;
	right: 0;
	bottom: 0;
	cursor: nwse-resize;
}

.box pre {
	border-radius: 0 !important;
	width: 100%;
	height: 100%;
	overflow: scroll;
	margin: 0;
	padding-bottom: 30px !important;
}
pre code {
	height: 100%;
}

textarea {
	background: #272822;
	width: 100%;
	height: 100%;
	color: #f8f8f2;
	font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
	font-size: 0.9em;
	text-align: left;
	padding: 1em;
	margin: 0.5em 0;
	overflow: auto;
	line-height: 1.5;
	border: 0;
}
