html,
body,
p,
img{
	margin: 0;
	padding: 0;
}
html{
	background-color: #ccc;
}
body{
	position: absolute;
    width: 100%;
    min-width: 500px;
    height: 100%;
    min-height: 600px;
}
/*html,body{
	opacity: 0;
}*/
.wrapper{
	min-width: 100%;
	min-height: 100%;
	overflow: hidden;
	background: url(../img/roadfhd.jpg) center center no-repeat;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    opacity: 0.9;
    position: relative;
}
.loader{
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0;
	position: absolute;
}
.bg-theme{
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.7;
	position: absolute;
}
.container{	
    width: 100%;
	height: 100%;
	position: absolute;
	text-align: center;	
	display: none;
}

.container p{
	font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-size: 50px;
	color: #fff;
	padding-top: 400px;
	margin-bottom: 50px;
	-webkit-transition-delay: 5s; /* Safari */
    transition-delay: 5s;
}

.container a{
	font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	text-decoration: none;
	font-size: 40px;
	color: #ffffff;

}
.animated { 
    -webkit-animation-duration: 1s; 
    animation-duration: 1s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
} 

@-webkit-keyframes fadeIn { 
    0% {opacity: 0;} 
    100% {opacity: 0.9;} 
} 
@keyframes fadeIn { 
    0% {opacity: 0;} 
    100% {opacity: 0.9;} 
} 
.fadeIn { 
    -webkit-animation-name: fadeIn; 
    animation-name: fadeIn; 
}