html, body {
	min-height: 100%;
	font-family: serif;
	color: #fff;
	margin: 0;
}

* {
	box-sizing: border-box;
}

/**
 * Mobile version
 */
 
header {
	height: 60px;
	background: #fff;
	text-align: center;
}

header .logo {
	height: 52px;
	width: 52px;
	position: absolute;
	left: 50%;
	margin-left: -26px;
	top: 4px;
	background-image: url(../img/header_logo.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

main {
	height: 70vh;
	text-align: center;
	position: relative;
	background-image: url(../img/bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

main .center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	padding: 30px;
	max-width: 450px;
}

main .center .logo {
	margin-bottom: 20px;
	background-image: url(../img/main_logo.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	display: inline-block;
	width: 50vw;
	max-width: 245px;
}

main .center .logo:before {
	content: '';
	display: block;
	padding-top: 45.71%;
}

main .center .text {
	font-style: italic;
	font-weight: normal;
	font-size: 16px;
}

footer {
    background-color: #202020;
	font-size: 12px;
	color: #B89D63;
}

footer a {
	color: #B89D63;
	text-decoration: none;
	text-align: center;
}

footer .icp {
	display: block;
	padding-bottom: 20px;
	text-align: center;
	clear: both;
}

footer img {
	margin-right: 8px;
	position: relative;
	top: 3px;
}

footer .col {
	padding: 30px;
}

footer .col:nth-child(2) {
	padding-top: 0;
}

/**
 * Desktop version
 */

@media only screen and (min-width: 750px) {
	main {
		position: absolute;
		left: 0;
		right: 0;
		top: 60px;
		bottom: 180px;
		height: auto;
	}

	main .center {
		max-width: 550px;
	}

	main .center .text {
		font-size: 20px;
	}

	footer {
		position: absolute;
		height: 180px;
		left: 0;
		right: 0;
		bottom: 0;
		font-size: 14px;
		overflow: hidden;
	}

	footer .columns {
		max-width: 800px;
		height: 100%;
		margin: 0 auto;
	}

	footer .col,
	footer .col:nth-child(2) {
		width: 50%;
		float: left;
		padding: 30px 30px 15px;
	}

	footer .col:nth-child(2) {
		/*text-align: right;*/
	}
}

@media only screen and (min-width: 1280px) {
	main .center {
		max-width: 690px;
	}

	main .center .text {
		font-size: 26px;
	}

	footer {
		font-size: 16px;
	}
}

