/* Style sheet created by: Chelsie Hamsa, 9/1/2023 */

/* Style for body specifies a background color */
body {
	background-color: #E0F0FF;
}

/* Styles for Mobile Layout */
img {
	max-width: 100%;
}

/* Style for the container centers the page and specifies the width */
#container {
	width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Style for the header specifies top margin, background color, rounded corners, and center align content */
header {
	font-family: Verdana, Arial, serif;
	font-size: 2em;
	margin-top: 0.2em;
	margin-bottom: 0.3em;
	text-align: center;
	padding: 0.2em;
	color: #000066;
}

/*Style for banner */
#banner {
	text-align: center;
}

/* Style for nav specifies text properties */
nav {
	font-family: Lucida, "Times New Roman", serif;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
}

/* Style specifies padding and margins for unordered list */
nav ul {
	padding: 0;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

/* Style for nav li specifies the background color, rounded corners, removes bullet style, and applies margins and padding for list items within the navigation */
nav li {
	background-color: #000066;
	list-style-type: none;
	margin: 0.4em;
	padding: 0.5em;
}

/* Style changes navigation link text color to white and removes the underline */
nav li a {
	color: #FFFFFF;
	text-decoration: none;
}

/* Style for the main specifies a block display, text properties, margins, padding, rounded corners, and borders  */
main {
	display: block;
	font-family: Georgia, "Times New Roman", sans-serif;
	font-size: 1em;
	margin-top: 0.5em;
	padding: 0.5em;
	border-radius: 1em;
	background-color: #FFFFFF;
}

/* Style for the footer specifies font size, text alignment, and top margin */
footer {
	font-size: .70em;
	text-align: center;
	margin-top: 2em;
}

/*Style for article h3 */
article h3 {
	text-align: center;
}

/*Style for figure images */
figure {
	text-align: center;
}

/*Style for figure captions */
figcaption { 
	color: #000066;
}

/*Style for section padding */
section {
	padding: 1em;
}

/*Style for article */
article {
	margin: 1em;
	padding: 1em;
	background-color: #ACB7E6;
}

/* Style displays the mobile class */
.mobile {
	display: inline;
}

/* Style to hide mobile display */
.desktop {
	display: none;
}

/* Style for input, select and text areas */
input, select, textarea {
	display: block;
	margin-bottom: 1em;
}

/* Style for label */
label {
	display: block;
}

/* Style for form unordered list */
form ul {
	list-style-type: none;
}

/* Style for .svc class */
.svc {
	display: inline-block;
}

/* Media query for tablet viewport targets screen size with a minimum width of 481px */

@media only screen and (min-width: 481px) {

/* Style for horizontal navigation with set margins, padding, and width */
nav li {
	display: inline;
	float: left;
	margin-left: 1%;
	margin-right: 1%;
	padding-left: 0;
	padding-right: 0;
	width: 18%;
}

/* Style for main formatting on tablet */
main {
	clear: left;
}

/* Style to hide mobile display */
.mobile {
	display: none;
}

/* Style to display desktop */
.desktop {
	display: inline;
}

/* Style for label */
label {
	float: left;
	padding-right: 0.5em;
	text-align: right;
	width: 8em;
}

}

/* Media query for desktop viewport targets screens with a minimum width of 937px. */

@media only screen and (min-width: 937px) {

/*Style specifies article width, float and height in section*/
section article h3 {
	width: 22%;
	float: left;
	height: 15em;
}

/* Style specifies a width for container */
#container {
	width: 80%;
	}

/* Style for unordered list navigation formatting*/
nav ul {
	margin: 0;
	padding-left: 0.50%;
	padding-right: 0.50%;
}

/* Style for list items in navigation list */
nav li {
	border-radius: 0;
	margin-left: 0;
	margin-right: 0;
	padding: 0;
	width: 20%;
	white-space: nowrap;
}

/* Style for navigation list display */
nav li a {
	display: inline-block;
	padding: 0.7em;
	font-size: 1.25em;
}

/* Style for main section on desktop */
main {
	border: none;
	border-radius: 1em;
	box-shadow: 1em 1em 1em #331400;
	margin-top: 1em;
	}
	
/* Style for pseudo-classes */
nav li a:link {
	color: #FFFFFF;
}

nav li a:hover {
	color: #CCFFCC;
	font-size: 1.5em;
}

/* Style specifies a gradient for the body element */
body {
	background: -moz-linear-gradient(#FFFFFF, #3366CC); /* Firefox */
	background: -o-linear-gradient(#FFFFFF, #3366CC); /* Opera */
	background: -webkit-linear-gradient(#FFFFFF, #3366CC); /* Chrome, Safari */
	background: linear-gradient(#FFFFFF, #3366CC); 
	background-attachment: fixed;
	overflow: auto;
	}
	
}