@charset "utf-8";
/* CSS Document */
body{
    animation: fadeInAnimation ease 1.3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    background-color: bisque;
    color:#0B1108;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    background-image: url("../images/baclground.jpg");
	background-size:cover;
	background-repeat: no-repeat;
	
	
}
 @keyframes fadeInAnimation {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1; 
            }
}

h1{
	
}
h2{
	
}
h3{
	
}
.upperNav{
background-color:#333A40;	
	
}
.innerSpace{
	background-color:#6C9CE6;
	opacity: 75%;
	color:black;
	text-align: center;
	animation-name: goingDown;
	animation-delay: 1s;
	position: relative;
	animation-iteration-count: 1;
	animation-duration: 2s;
	animation-fill-mode: forwards;
	
	
}
@keyframes goingDown{
	 from {top: 0px;}
  to {top: 120px; background-color: antiquewhite;}
	
}

