html,
body {
	height: 100%;
	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;
}

h1 {
	font-size: 3em;
}

h2 {
	font-size: 2em;
}

.parent {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	height: 100%;
}

#child1,
#child2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2em;
}

#child1 {
	grid-area: 1 / 1 / 2 / 2;
}

#child2 {
	grid-area: 2 / 1 / 3 / 2;
}

#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;
	opacity: 0.85;
	background: #fff;
	color: #000;
	box-shadow: 0 1px 22px -8px rgba(0, 0, 0, 0.372);
}