@charset "UTF-8";
/* CSS Document */

body{
	background-color: #aaa;
	font-family: prenton, Gill Sans,source-han-sans-cjk-ko, source-han-sans-simplified-c,sans-serif;
	font-weight: 400;
	font-kerning: normal;
	padding: 0;
	margin: 0;
	height: auto;
}

.panel {
	background-color: #fff;
	position: absolute;
	display: block;
	margin: auto;
	left: 0;
	right: 0;
	width: 90%;
	max-width: 800px;
	top: 40%;
	transform: translateY(-50%);
	/*-*/
	color: #555;
	border: 5px solid #ccc;
	padding: 10vh 0 5vh;
	border-radius: 10px;
	text-align: center;
}

h1 {
	font-family: lexia, Gill Sans, source-han-serif-korean, sans-serif;
	font-weight: 700;
	font-size: 36pt;
	margin: 25px 0 10px;
	color: #222;
}

h2 {
	font-weight: 400;
	font-size: 21pt;
	margin: 10px 0;
}

button {
	border: thin solid darkgreen;
	background-color: green;
	border-radius: 3px;
	color: #fff;
	padding: 10px 25px;
	margin: 50px 0 0;
	font-family: prenton, Gill Sans,source-han-sans-cjk-ko, source-han-sans-simplified-c,sans-serif;
	text-decoration: none;
	display: inline-block;
	font-size: 16pt;
	cursor: pointer;
	transition-duration: 0.2s;
}

button:hover {
	background-color: seagreen;
}

#footer {
	position: absolute;
	bottom: 1vh;
	text-align: center;
	font-size: 11pt;
	width: 100%;
	color: #333;
}

#footer::after {
	content: "2021. All rights reserved.";
}

/*for svg*/
svg.sign{
	width:60%;
	max-width:250px;
}
.signred {
	fill: #e31837;
}
.signblue {
	fill: #0079c1;
}
.signwhite {
	fill: #fff;
}
.signblack {
	fill: #111;
}

@media only screen and (max-width: 550px) {
	body {
		min-width: 350px;
	}
	.panel {
		position: relative;
		min-width: inherit;
		width: 100%;
		border-radius: 0;
		border: none;
		margin: 0 0 10vh;
		top: 0;
		transform: none;
	}
	h1 {
		font-size: 30pt;
	}
	h2 {
		font-size: 18pt;
	}
	#footer {
		position: relative;
		bottom: 5vh;
		font-size: 9pt;
		min-width: inherit;
	}
}
