html,
body {
	margin: 0;
	padding: 0;
	font-family: verdana;
}

a {
	color: #0000ff;
	cursor: pointer;
	text-decoration: none;
}

var {
	font-style: normal;
}

.root {
	display: flex;
	flex-direction: column;
	min-height: calc(100vh - 15px);
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	background-color: #f9f9f9;
	padding: 0 15px 15px;
	border-bottom-left-radius: 10px;
}

.main {
	position: relative;
}

.main .header {
	display: flex;
	justify-content: center;
	margin-bottom: 15px;
}

.main .header a {
	font-size: 50px;
	font-family: cursive;
	cursor: pointer;
	color: #000000;
	text-shadow: 3px 3px 5px #999999;
	text-decoration: none;
	margin-right: 20px;
	position: relative;
	top: 30px;
}

.main .header img {
	border-radius: 10px;
	margin-top: 15px;
}

.main .footer {
	border-top: 2px solid #afbfaf;
	padding: 10px 0;
	margin: 15px 0 0;
}

.main .footer .link {
	color: #0000ff;
	cursor: pointer;
	text-decoration: none;
	float: left;
	padding-right: 10px;
	font-size: 12px;
}

.main .footer .copywrite {
	font-size: 10px;
	float: right;
}

.body {
	flex-grow: 1;
}

.popImage {
	border-radius: 10px;
	box-shadow: 7px 7px 10px #999999;
}

.error {
	color: #ff0000;
	font-weight: bold;
}

@media (max-width: 780px) {
	.main .header a {
		top: 10px;
	}
	.main .header img {
		display: none;
	}
}