@font-face {
	font-family: Apercu;
	font-display: swap;
	font-weight: 300;
	src: url('/Apercu-Light-Pro.woff2') format('woff2'), url('/Apercu-Light-Pro.woff') format('woff');
}

html,
body {
	font-size: 16px;
	background-color: #fff;
	color: #000;
	height: 100%;
	margin: 0;
	font-family: 'Apercu', Arial, Helvetica, sans-serif;
}

#root {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 0;
}

.container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 1000px;
	padding: 2rem;
}

.title {
	text-align: center;
	font-size: 48px;
	max-width: 700px;
}

.sub-title {
	max-width: 700px;
	padding-top: 1.5rem;
	font-size: 28px;
	text-align: center;
}

.downtime-img-container {
	display: flex;
}

.downtime-img {
	width: 100%;
}

.generic-button {
	border-radius: 10rem;
	font-family: inherit;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	height: 3rem;
	display: flex;
	-moz-box-pack: center;
	justify-content: center;
	-moz-box-align: center;
	align-items: center;
	border-style: solid;
	border-width: 2px;
	letter-spacing: 0px;
	width: auto;
	text-align: center;
	white-space: nowrap;
	padding: 0.75rem 1.75rem;
	background: rgb(0, 0, 0) none repeat scroll 0% 0%;
	border-color: rgb(0, 0, 0);
	color: rgb(255, 255, 255);
	cursor: pointer;
}

/* Tablet */
@media only screen and (max-width: 600px) {
	.title {
		text-align: center;
		font-size: 30px;
		max-width: 700px;
	}

	.sub-title {
		padding-top: 1.5rem;
		font-size: 20px;
		text-align: center;
		max-width: 700px;
	}
}