@charset "utf-8";

/*
	Stylesheet for Midterm Project

	Author: Aaron Spence
	Date: 10/22/2025
	cis 1410
	
	filename: mt_styles1.css
*/

html {
   background-color: rgb(127, 127, 127);
   background-size: cover;
   height: 1200px;
}

/* Page Body Styles */
body {
   background-color: rgb(204, 195, 151);
   font-family: Verdana, Geneva, Arial, sans-serif; 	
   margin-left: auto;
   margin-right: auto;
   width: 1100px;
}

body > header > img {
	display: block;
	width: 100%; 
	height: 250px; 
}
body > header > ul {
	margin: 0;
	padding: 0;
}

article.home > img {
	float: right;
	width: auto;
	height: 400px;
	padding-right: 30px;
	padding-left: 30px;
}

article > p {
	margin-left: 30px;
	margin-right: 30px;
	font-size: 1.2em;
}
article > p#paragraph2 {
	padding-bottom: 50px;
}
body > div > section > figure > img {
	display: block;
	width: 250px;
	height: 250px;
	
}
div.container {
	display: flex;
	gap: 20px;
	flex: 1;
}
div.container section > figure > img {
	width: 50%;
}
	
/* Aside styles */

aside#comments {
	width: 300px;
	align-content: right;
	background-color: green;
	color: white;
	
}



/* Heading styles */

article.home > h1 {
	margin-left: 30px;
	margin-right: 30px;
	padding-top: 60px;
}

article.home > h2 {
	margin-left: 30px;
	margin-right: 30px;
}

/* Navigation Styles */

nav.horizontalNavigation > ul > li {
	display: block;
	text-decoration: none;
	background-color: green;
	width: 20%;
	float:left;
	text-align: center;
	margin-top: 0;
	padding-top: 0;
	/*
	background-color: rgb(53, 98, 42);	
	display: block;
	float: left;
	text-align: center;
	width: 20%;*/
}
nav.horizontalNavigation a {
	text-decoration: none;
	width: 100%;
	font: white;
	color: white;	
	display: block;
	height: 2.5em;	
	text-align: center;
	line-height: 2.5em;	
}
nav.horizontalNavigation a:visited, nav.horizontalNavigation a:link {
   color: white;
}

nav.horizontalNavigation a:hover, nav.horizontalNavigation a:active {
   background-color: black;
   color: white;
}
  
/* Footer Sytles */

footer {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 50px;
	padding-top: 50px;
	background-color:black;
	color: white;
	width: 100%
}  
   
   
   
/*   
   background-color: rgb(117, 140, 72);
   min-height: 2em;
}

nav.horizontalNavigation li {
   color: rgb(31, 73, 125);
   display: flex;
   width: 100%;
   
   line-height: 2em;
   text-transform: uppercase;
}

nav.horizontalNavigation a {
   display: block;
   font-size: 1em;
}

nav.horizontalNavigation a:visited, nav.horizontalNavigation a:link {
   color: rgb(31, 73, 125);
}

nav.horizontalNavigation a:hover, nav.horizontalNavigation a:active {
   background-color: rgb(31, 73, 125);
   color: white;
}
*/