
/*header*/
header {
	width: 800px;
	margin: 40px auto;
}
 
header h1 {
	text-align: center;
	font: 100 60px/1.5 Helvetica, Verdana, sans-serif;
	
}
 
header p {
	font: 100 15px/1.5 Helvetica, Verdana, sans-serif;
	text-align: justify;
}

/*background*/
body {
	background-color: black;
}

* {margin: 0; padding: 0;}
 
#container {
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 50px auto;
	background: black;
}



/*Enter Site*/
a:visited {
	color:white;
}
h2 span {
	color: white;
	font: bold 36px/64px Helvetica, Sans-Serif;
	letter-spacing: -1px;
    background: rgb(0, 0, 0);
	background: rgba(0, 0, 0, 0.6);
	padding: 10px;
	text-align: center;
	

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/*photobanner*/
 
.photobanner {
	height: 1024px;
	width: 600%;
	margin-bottom: 0px;
}

/*keyframe animations*/
.first {
	-webkit-animation: bannermove 120s linear infinite;
	   -moz-animation: bannermove 120s linear infinite;
	    -ms-animation: bannermove 120s linear infinite;
	     -o-animation: bannermove 120s linear infinite;
	        animation: bannermove 120s linear infinite;
}

/* px should be width of image X # of images*/
@keyframes "bannermove" {
 0% {
    margin-left: 0px;
 }
 100% {
    margin-left: -11520px;
 }
 
}
 
@-moz-keyframes bannermove {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -11520px;
 }
 
}
 
@-webkit-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -11520px;
 }
 
}
 
@-ms-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -11520px;
 }
 
}
 
@-o-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -11520px;
 }
 
}