html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	background-color: #f2f2f2;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	display: flex;
	justify-content: center;
	align-items: center;
}

body.error {
	background-color: #f37060;
}

.box {
	box-sizing: border-box;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.1);
	width: 82.5vw;
	max-width: 480px;
	background-color: white;
	text-align: center;
	padding: 2rem;
}

h1 {
	margin: 0 0 1rem;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: 1.5;
}

p:last-of-type {
	margin-bottom: 0;
}

a {
	color: #2f69d5;
}

a:hover,
a:focus {
	color: #1a3a75;
}