html{
	height: 100%;
	overflow: auto;
	background: #e9e8f1;
}
body{
	min-height: 100%;
	width: 100%;
	max-width: 1400px;
	margin: auto;
	padding: 10px;
	color: #333;
}
h1{
	font-size: 32px;
	text-align: center;
	line-height: 68px;
}
h2{
	background: #386f93;
	padding: 0 10px;
	color: #fff;
}
code{
	background: #efefef;
	display: block;
	width: fit-content;
	padding: 10px;
	border-radius: 3px;
}
.section{
	margin: 10px 0;
	padding: 10px 0;
	border-bottom: 1px solid #aaa;
}
.loginbox{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #386f93;
}
.logincontent{
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	max-width: 400px;
	max-height: 250px;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 1px 5px 1px #0009;
	padding: 15px;
}
.loginboxbutton{
	margin: 10px auto 0;
	width: fit-content;
	padding: 10px 20px;
	background: #ee9a0e;
	border-radius: 3px;
	cursor: pointer;
	color: #0009;
	font-weight: 700;
}