@charset "utf-8";


/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes 
fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
 
.fade-in {
    opacity:0;  /* make things invisible upon start */
    -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;
 
    -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
 
    -webkit-animation-duration:2s;
    -moz-animation-duration:2s;
    animation-duration:2s;
}
 
.fade-in.one {
-webkit-animation-delay: 2.7s;
-moz-animation-delay: 2.7s;
animation-delay: 2.7s;
}
 
 
/*---make a basic box ---*/
.box{
	width: 750px;
	height: 750px;
	background-color: #000;
    left:50%;
    margin-left:-375px;
    position:absolute;
	background-image: url(../imagens/intro_1.png);
	background-repeat: no-repeat;
	background-position: center;
 
	
	
	
}

body {
	background-color: #000;
}
.box.fade-in.one img {
	width: 280px;
	height: 99px;
	display: block;
	left:50%;
	top:50%;
    margin-left:-130px;
	margin-top: -20px;
	position:absolute;
}
