@font-face {
	font-family: 'SancoaleRegular';
	src: url('fonts/SancoaleRegular.otf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'SancoaleBold';
	src: url('fonts/SancoaleBold.otf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

html, body {
	height: 100%;
}

html {
	box-sizing: border-box;
}

*, *:after, *:before {
	box-sizing: inherit;
}

body {
	font-family: "SancoaleRegular", Arial, sans-serif;
	font-size: 87.5%; /* 14px */
	color: #777;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}

h1 {
	font-size: 3em;
}

h2 {
	font-size: 1.8em;
}

img:not(.png) {
	width: 100%;
}

.wrapper {
	display: table;
	width: 100%;
	height: 100%;
}

.wrapper-inner {
	display: table-cell;
	vertical-align: middle;
}

.logo-container {
	width: 60%;
	margin: 0 auto;
}

.title {
	margin: 3em 0 0.5em 0;
}

.subtitle {
}

.game {
	width: 109px;
	display: block;
	margin: 0 auto 5em auto;
}

.contact {
/*	position: fixed;*/
	display: block;
	width: 100%;
	height: 6em;
	padding: 1em;
	bottom: 0em;
}

.logo {	
	-webkit-animation: show;
	-webkit-animation-duration: 1.5s;
	animation: show;
	animation-duration: 1.5s;					
}

.title, .subtitle, .game, .contact {
	-webkit-animation: show;
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation: show;
	animation-duration: 1s;					 
	animation-fill-mode: both;	
}

.title, .subtitle, .game {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s; 
}

.contact {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;					 
}

.text-center {
	text-align: center !important;
}

@media (max-width: 700px) {
	.logo-container {
		width: 100%;
	}

	.title {
		font-size: 2.5em;
		margin: 1.6em 0;
	}
}

@media (max-width: 570px) {
	.logo-container {
		width: 100%;
	}

	.title {
		font-size: 2em;
	}
}

@media (max-width: 450px) {
	.title {
		font-size: 2em;
	}
}

@keyframes show {
	0%	 { opacity: 0; }
	100% { opacity: 1; }
}

@-webkit-keyframes show {
	0%	 { opacity: 0; }
	100% { opacity: 1; }
}
