*
{
	font-family: monospace;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html
{
	width: 100%;
	height: 100%;
}

iframe, video, embed, img, canvas
{
	min-width: 0;
	min-height: 0;
}

textarea
{
	resize: none;
}

body
{
	min-width: 100%;
	min-height: 100%;
	display: grid;
	padding: 1em;
	gap: 1em;
	grid-template-rows: auto auto auto auto auto 1fr;
	grid-template-columns: 1fr;
	justify-items: center; /*Individual left-right*/
	align-items: center; /*Individual up-down*/
	justify-content: stretch; /*Container left-right*/
	align-content: stretch; /*Container up-down*/
	overflow-y: scroll;
	text-align: center;
}
