@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');

html, body {
	width: 100vw;
	height: 100vh;
	
	background-color: black;

	display: flex;
	align-items: center;
	justify-content: center;
}

p {
	font-family: 'Roboto Mono', monospace;
	font-size: 30px;
	color: white;

	user-select: none;
}