body {
	margin: 0;
	height: 100vh;
	display: grid;
	place-items: center;
	background-color: #111;
}

#notes {
	width: 80ch;
	height: 90vh;
	box-sizing: border-box;
	padding: 5px;
	border: 1px solid #222;
	border-radius: 0px;
	outline: none;
	font: 24px monospace;
	color: white;
	resize: none;
	cursor: auto;
	background: none;
}