html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	user-select: none;
	height: -webkit-fill-available;
}

body {
	background: radial-gradient(circle at 50%, lightgrey, teal 100%);
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;

	min-height: 100vh;
	/* mobile viewport bug fix */
	min-height: -webkit-fill-available;
}

label {
	display: block;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
}

