html, body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    text-align: center;
}
section {
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../img/body-bg.jpg) no-repeat 50% 50%;
    background-size: cover;
}
.inner {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
h1 {
    font-size: 30px;
    font-weight: 300;
    display: block;
    margin: 0;
    padding: 0 10%;
    line-height: 1.2;
    text-align: center;
}
p {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
}


.logo {
	position:absolute;
	top:50%; left:50%;
	margin:-110px 0 0 -95px;
	width:190px; height:190px;
	display:block;
	text-indent:-999em;
	background:url(../img/logo.png) no-repeat 0 0;
	
	-webkit-animation: fade 2s ease-out;
	-moz-animation:    fade 2s ease-out;
	-ms-animation:     fade 2s ease-out;
	
}




/* ------------------------------------------ */
/* CSS3 Animations 
/* ------------------------------------------ */

@-webkit-keyframes fade {
        0%   { opacity: 0; }
        100% { opacity: 1; }
}
@-moz-keyframes fade {
        0%   { opacity: 0; }
        100% { opacity: 1; }
}
@-ms-keyframes fade {
        0%   { opacity: 0; }
        100% { opacity: 1; }
}



/* ------------------------------------------ */
/* Media Queries 
/* ------------------------------------------ */

@media 
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-device-pixel-ratio: 2) {
	
#logo {
	background-position: left bottom;
	background-size: 190px auto;
}