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

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

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

body
{
	background-image: url('bg.jpg');
	background-size: cover;
	background-size: 25%;
	background-repeat: repeat;
	background-position: center;
	width: 100%;
	height: 100%;
	display: grid;
	gap: 1em;
	grid-template-rows: 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: hidden;
}
