body, html {
	width: 100%;
	height: 100%;
	background: var(--color-fff);
}
.container {
	margin-top: -28px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	font-family: Helvetica, Arial, sans-serif;
}
.main-content {
	width: 550px;
}
img {
	width: 550px;
	height: auto;
}
.link-container {
	width: 550px;
	margin-top: 20px;
}
a {
	display: inline-block;
	text-align: center;
	padding: 8px 16px;
	border-radius: 6px;
	border: 1px solid #025CA5;
	background-color: #025CA5;
	color: white;
	text-decoration: none;
	font-size: 14px;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
a:hover {
	background-color: #014a86;
}
h1 {
	font-size: 24px;
	color: #ef772e;
	line-height: 1.2;
}
h2 {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color:#025CA5;
}
ul {
	font-family: monospace;
	list-style: none;
	padding: 16px 20px;
	margin: 0;
	background-color: white;
	border: 1px solid var(--color-ccc);
	border-radius: 6px;
}
