html {
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	background: #292929;
    color: #fff;
}

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

html, body, ul, ol, li, form, fieldset, legend {
    margin: 0;
    padding: 0;
}


h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
}

h1 {
	font-size: 180%;
}
fieldset, img {
    border: 0;
}

legend {
    color: #fff;
}

li {
    list-style: none;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption, th, td {
    text-align: left;
    vertical-align: top;
    font-weight: normal;
}

input, textarea, select {
    font-size: 110%;
    line-height: 1.1;
}

abbr, acronym {
    border-bottom: .1em dotted;
    cursor: help;
}



/* STYLE */
.page-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 8000;
	background: #292929;
    transition: all 0.5s ease;
    transition-delay: 0.1s;
}
.page-container:before {
	position:absolute;
	display:block;
	content:'';
	height:100%;
	width:100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.slideshow .slide {
    display: block;
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-container .logo {
    position: absolute;
    top: 40px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    transform: translateY(10%);
    -webkit-transform: translateY(10%);
    -ms-transform: translateY(10%);
    text-align: center;
    transition: all 0.5s ease;
    transition-delay: 0.5s;
}

.page-container .logo img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.footer {
    position: fixed;
    z-index: 9000;
    bottom: 10%;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
}
.footer a {
    color: #FEED31;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
	text-decoration: underline;
}

@media screen and (min-width: 768px) {
    .page-container .logo {
        top: 40%;
        left: 20%;
        right: 20%;
        transform: translateY(-30%);
        -webkit-transform: translateY(-30%);
        -ms-transform: translateY(-30%);
    }

    .pace-done .page-container .logo {
        transform: translateY(-65%);
        -webkit-transform: translateY(-65%);
        -ms-transform: translateY(-65%);
    }
}

@media screen and (min-width: 1200px) {
    .page-container .logo {
        left: 35%;
        right: 35%;
    }
}

/* iPhone 4 and high pixel devices  */
@media screen and (-webkit-min-device-pixel-ratio : 2)
and (orientation: landscape),
screen and (device-pixel-ratio : 1.5) 
and (orientation: portrait) {
	.page-container .logo img {
		max-width: 10%;
	}
}