/**
Simple Console
Replaced proprietary font with IBM Plex Mono (open source).
*/

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;700&family=Noto+Sans+Mono:wght@400;600&display=swap');

html, body {
	padding: 0;
	margin: 0;
	font-size: 1em;
	line-height: 1.2;
	font-family: 'IBM Plex Mono', 'Noto Sans Mono', monospace;
	font-variant-ligatures: none;
	font-feature-settings: 'liga' 0, 'calt' 0;
}

pre {
	position: absolute;
	margin: 0;
	padding: 0;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	font-family: inherit;
	font-variant-ligatures: none;
	font-feature-settings: 'liga' 0, 'calt' 0;
}