/* Basic CSS resets -- leveling slight inconsistencies in browsers */
html, body {
	margin:0px;
	padding:0px;
	height:100%;
}

html {
		/* Standard text-settings below */
	font-size: 1em;
    line-height: 1.4em;}



/* Mobile First CSS: we'll design for phone sizes first, then add media queries for larger screens later */

body {
	background:  #009999
    url(../img/Dash.jpg)fixed no-repeat center;
    background-size:cover;
    color: #fbf4ea;}

	
p { font-family: "Orbitron", sans-serif;
  font-weight:400;
  font-style: normal;}

footer{
    font-size:12px;
padding-bottom:10px;}


#container {
    width:500px;
    margin:auto;}


Section {
background:rgba(0, 102, 77, 1.0);
    border: 10px double rgba(0, 153, 115, 1.0);
    padding:10px;
   margin: 20px;}

header#maintitle{ 
text-align: center;
    color:#9fdfcf;
    line-height: normal;
    font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
    letter-spacing: normal;
    padding: 10px;}


h2#OxA{font-family: "Space Mono", monospace;
  font-weight: 500;
  font-style: italic;
    letter-spacing: normal; }

h1#Sub{
  font-family:"Orbitron", sans-serif;
  font-weight:900;
  font-style: normal;}




/* ========================================
MEDIA QUERIES!
You can adjust the min-width numbers below, and add as many new media queries as you need.
======================================== */



/* Minimum width for laptops. */
@media all and (min-width: 769px) {
	
    body { 
    background: rgb(0, 153, 115) url("../img/Split.jpg") fixed no-repeat center;
    background-size:cover;}
    
    Section {
        background:rgba(0, 102, 77, 0.8);}
        
    #container{
        width:700px;
        margin:auto;}
	
	
} /* closes 769px+ */




/* Minimum width for desktop screens. */
@media all and (min-width: 1024px) {
	
    body{
background:  #009999
url(../img/Fade.jpg)fixed no-repeat center;
    background-size:cover;
}
    
     #container{
         width:1000px;}
    
    Section {
        background:rgba(0, 102, 77, 0.5);}
    
    
    #First{
        float:left;
        width:40%;}
        
        #Second{
       float:right;
        width:40%;}

    footer{ 
    clear: both;
}
	
	
	
} /* closes 1024px+ */



