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

/* === sec-body === */
body {
	position: relative;
	background-color: #121212;
	background-image: url("/img/bg1.png");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 80% auto;
	min-height: 100vh;
	margin: 0;
	@media screen and (min-width:768px){
		background-position: right center;
		background-size: auto 80vh;
	}
}

/* === sec-logo === */
#logo {
	position: relative;
	z-index: 10;
	width: 60%;
	max-width: 260px;
	padding: 20px;
	@media screen and (min-width:768px){
		position: absolute;
		width: 320px;
		max-width: none;
		margin: 0;
		padding-top: 0;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

#logo h1 {
	margin: 0;
}

#logo img {
	width: 100%;
	height: auto;
	display: block;
}
