/* CSS Document */

html { 
  background: url(../images/bg.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;	
}
body {
    overflow-x:hidden;
	overflow-y:hidden;
	cursor:wait;
	min-height: 700px;
	margin: 0px;
	padding: 0px;
}
/* ---------------CONTAINER CONDs --------------------- */
#header {width:100%; margin:auto; font-family:sans-serif;}

/* --- sniffer --- */
#sniffer{
	position: absolute;
	top: 50%;
	width: 100%;
	bottom: 50%;

}
#sniffer div{
	font-size: 10px;
	color:currentColor;
	width: 100%;
	text-align: center;	
}




/*zDog anime*/
@keyframes paraIn {
/*animation properties*/
	0% {
  transform: translateX(-100%) rotate(0deg);
 }
 90% {
  transform: translateX(10%) rotate(360deg);
 }
 100% {
  transform: translateX(0%) rotate(360deg);
 }
}
#header p {
 animation-duration: 2s;
 animation-name: paraIn;
 animation-timing-function:ease-out;	
   width: 100%;
   text-align: center;
}
img{
	width: 50%;
	margin-top: 2%;
}