html, body {
	height: 100%;
	box-sizing: border-box;
	margin: 0;
}

html {
	font-family: sans-serif;
	color: white;
	background-color: #282A36;
	padding: 0;
}

body {
	padding: 20px;
	display: flex;
	background-color: rgba(0, 0, 0, 0.3);
}

#left, #right {
	display: flex;
	flex-direction: column;
}

#left {
	flex: 1;
}

#right {
	padding: 0 2rem;
	overflow: auto;
}

td {
	padding: 0.5em 1.5em;
	background-color: rgba(255, 255, 255, 0.05);
	font-family: var(--code-font);
}

h1 {
	white-space: pre;
	font-size: 3rem;
	font-family: Consolas, var(--code-font)
}

h1:empty::after {
	content: "​";
}

:root {
	--code-font: JetBrains Mono, Inconsolata, Fira Code, monospace;
}

input {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	font-family: var(--code-font);
	font-size: 1.1rem;
	outline: none;
	border-radius: 5px;
	border: none;
	background-color: rgba(0, 0, 0, 0.4);
	color: white;
}

::selection {
	background-color: #44475A;
}

#editor {
	margin-top: 2rem;
	border-radius: 10px;
	flex: 1;
}