html, body {
	height: 100%;
}

body {
	margin: 0;
}

body {
	text-align: center;
	font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}

h1,
h2 {
	margin: 0 0 10px 0;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

h1 {
	font-size: 3em;
	line-height: 3.2rem;
}

h2 {
	font-size: 2em;
	line-height: 2.2rem;
	font-weight: 600;
}

#grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
	
	padding: 5%;
}

#grid div {
	grid-area: 1 / 1 / 2 / 2;
	display: flex;
	flex-direction: column;
	gap: 2em;
}

#attribution:before {
	content: '–';
}

#reload {
	position: absolute;
	bottom: 3em;
	right: 3em;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	border-radius: 100px;
	cursor: auto;
	color: #fff;
	background: transparent;
}

#reload:hover {
	cursor: pointer;
	background: #fff;
	color: #000 !important;
	box-shadow: 0 1px 22px -8px rgba(0, 0, 0, 0.372);
}