html, body {
	overscroll-behavior: none;
}

html {
	touch-action: manipulation;
}
	
body {
	background-color: black;
	
	overflow-x: hidden;
	overflow-y: hidden;
	
	min-height: 100vh;
	width: 100%;
	padding: 0;
	margin: 0;
}

.content {
	font-family: "Lucida Console", "Courier New", monospace;

	position: relative;
	background-color: black;
	color: black;
	padding: 1px;
	
	position: fixed;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	border: none;
}
