
body {
	
	background-color: #000000;
}



a {
	text-decoration: none;
	color: red;
	
}

h1 {
	margin: 0;
       font-family: arial, Times, serif;

	font-weight: bold;
	font-size: 60px;
	color: RED;
	text-shadow: 1 0 2px WHITE, 1 0 6px RED;
	
		}

h2 {
	margin: 0;
       font-family: arial, Times, serif;

	font-weight: bold;
	font-size: 40px;
	
	color: RED;
	text-shadow: 1 0 2px WHITE, 1 0 6px RED;
	
		}





h3 {
	margin: 0;
       font-family: arial, Times, serif;
    
	font-weight: normal;
	
	  max-width: 100%;
  height: auto;
	

        /*    font-size:1.75vw;    */
            
        


	color: white;
	text-shadow: 1 0 2px white, 1 0 6px RED;
	
		}




h4 {
	margin: 0;
       font-family: arial, Times, serif;

	font-weight: normal;

        /*    font-size:2vw; */
        
   
            max-width: 200px;
              height: auto;


	color: white;

	

	
	
	
		}



h5 {
	margin: 0;
       font-family: arial, Times, serif;

	font-weight: normal;

        /*    font-size:2vw; */
        
   
            max-width: 400px;
              height: auto;


	color: red;

	

	
	
	
		}





#header {
	background-color: #2C00BC;
	color: white;
	text-align: center;
	padding: 20px;
	
}

#content {
	padding: 10px;
	
}

#nav{width: 180;
	float: left;
	}

#nav ul {
	list-style-type: none;
	padding: 0;
	
}
	
			
#nav .selected {
		font-weight: bold;
		
	}
	
#main {
	width: 600px;
	float: right;
	
}

#footer{
	clear: both;


 	width:100vw;



	color: white;
	text-align: right;
	
	
}






input.MyButton {
 width: 8vw;


 cursor: pointer;
 font-weight: bold;
 font-size:.70vw;
 background: #000;
 color: #fff;


}
 input.MyButton:hover {
 color: #ffff00;
 background: #3366cc;
 border: 1px solid #fff;
} 













#fixedheader {
	position:fixed;
	top:0px;
	left:0px;
 	width:100vw;
	color:#CCC;
	background:#000000;
	opacity: 0.5;

}
#fixedfooter {
	position:fixed;
	bottom:0px;
	left:0px;
	width:100%;
	color:#CCC;
	background:#333;
	opacity: 0.5;
}






/* Style the header with a grey background and some padding  (changed to black) */
.header {
  overflow: hidden;
 /*  background-color: #f1f1f1; */
 
 
  background-color: #000000;
  padding: 20px 10px;
}

/* Style the header links */
.header a {
  float: left;
  /* color: black; (changed to white) */
    color: white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active/current link*/
.header a.active {
  /* background-color: dodgerblue;  */
   background-color: red;
  
   color: white;
}

/* Float the link section to the right */
.header-right {
  float: right;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */ 
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}




/* header sizing */


.responsive {
  width: 50%;
  max-width: 400px;
  height: auto;
}





/* USED TO CENTER TEXT ON AND FLOAT IMAGES */



.container {
  position: relative;
  text-align: center;
  color: white;
  float: left;
  
}


.centered {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
}





