@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600&family=Space+Mono&display=swap');

/*#confirmation{
    margin: 50px; 
}*/

/*Core of the Main CSS settings */
html, body{
  height: 100%;
  margin: 0;
  padding: 0;
}

body{
  font-family: 'Space Gortesk';
  font-size: 16px;
  color: aqua;
  background-color: black;
  margin: 0;
  padding: 0;
}

header{
  background-color: black;
  height: 50px;
  margin-left: 15px;
}

header h1{
  font-family: 'Space Mono';
  font-size: 46px;
  color: mediumspringgreen;
  line-height: 60px;
}

/*Here are the NAV settings*/
nav{
  background-color: black;
  font-size: 18px;
  padding: 20px;
}
nav li{
  display: inline;
  list-style: none;
}
nav a{
  display: inline-block;
  padding: 10px;
  color: aqua;
}

/*Return back to the main page content settings*/

main{
  float: left;
  box-sizing: border-box;
  padding: 20px;
}

aside{
  float: left;
  box-sizing: border-box;
  width: 30%;
  padding-left: 20px;
}

/*This should allow me to have both the main and aside be align with one another*/
#div1 {
  width:70%;
  float: left;
}

#div2 {
  width:30%;
  float: right
}

#content{
  overflow: auto;
/*Alternatively, the clearfix hack could go here. */
}

#container{
  width: 450px;;
  margin: 0 auto;
}

/*I cheated and placed both the main and aside into columns to align with one another*/
/*.col1{
  width: 30%;
  float: left;
  margin: 10px;
}*/

/*.col2{
  width: 70%;
  float: right;
  margin: 10px;
}*/

/*Back to the footer */ 
footer{
  clear: both;
  padding: 10px;
  background-color: darkslategray;
  text-align: left;
  margin-top: auto;
  font-size: 85%;
}

/*Here is the settings for text within the body/paragraphs*/
h1{
  color: mediumspringgreen;
  font-size: 140%;
  font-weight: bold;
  margin-bottom: 20px;
}

p{
  line-height: 1.5; 
  margin-bottom: 12px;
  position: relative;
  left: 20px;
  text-align: justify;
}

h2, h3{
  margin: 10px; 
}
  
ul, ol{
  list-style: none; 
  line-height: 2;
  padding: 0;
  margin: 0;
}
  
li{
  margin-bottom: 5px;
}

/*I forget what you do but I'mma leave you alone*/
a{
  color: #0066cc;
}
  

/*General img behavior. Don't mess with it like last time!!!*/
img{
  max-width: 60%;
  height: auto;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*nav button info*/
  
#mobile-nav-button{
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  font-weight: bold;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  display: none;
}


/*@media screen and (max-width: 800px){
  main, aside{
    float: none;
    width: 100%;
  }
  
  #mobile-nav-button{
    display: block; 
  }
}
*/

/*Ah yes, how the page should behave on mobile devices*/
@media all and (max-width: 800px){
	header{
		height:44px;
	}

	main, aside{
		width: 100%;
		float: none;
	}

  main{
    margin-left: 10px;
  }

  aside{
    margin-left: 30px;
  }

	#main-nav{
		position: absolute;
		top:44px;
		height: 100%;
		width: 0;
		transition: width .5s;
		z-index: 100;
	}

	#main-nav li{
		overflow: hidden;
	}

	#main-nav.show{
		width: 250px;
	}

	#main-nav ul li{
		display: block;
	}

	#mobile-nav-button{
		display: block;
	}
  /*Applied new header h1 sizing for mobile*/
  header h1{
    font-size: 32px;
  }

}

/*Here is the CSS for the Image Gallery*/
input[type=button]{
  border:2px solid gray;
  background-color: #333333;
  border-radius: 4px;
  padding:10px;
  color:gray;
  font-weight: bold;
}

#image-gallery{
  width:380px;
}

#image-gallery #mainImg{
  width:100%;
  border: 2px solid #333333;
}

label{
  width: 150px;
  display: inline-block;
  padding: 10px;
}

