@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Roboto Mono', monospace;
}
h1 {
	margin-bottom: 20px;
	background: lavender;
	text-align: center;
	color: midnightblue;
}
section {
	height: 50vh;
	position: relative;
}
H2 {
	margin-left: 50px;
	font-size: 16px;
	color: royalblue;
}
textarea {
	width: 90%;
	min-width: 400px;
	max-width: 1020px;
	height: 39vh;
	padding: 10px;
	border: solid 1px royalblue;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: 'Roboto Mono', monospace;
}