/* Style sheet created by: Student's First Name Student's Last Name, Today's Date */

/* Style for body specifies a background color */
body {
	background-color: #FFFF99;
}

/* Style to create a fluid image */
img {
	max-width: 100%
}

.FaribaPic{
	max-width: 30%;
	text-align: center;
}

.WhoAmI{
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: #ff8000;
}

/*
h1 {
 text-align: center;
}

h2 {
 text-align: center;
}
*/
/* Styles for Mobile Layout */

/* Style for the container centers the page and specifies the width */
#container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

/* Style for the header specifies top margin, background color, rounded corners, and center align content */
header {
	margin-top: 0.2em;
	background-color: #FFFFFF;
	border-radius: 0.5em;
	text-align: center;
}

/* Style for nav specifies text properties */
nav {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.25em;
	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: #009933; 
	border-radius: 2em; 
	list-style-type: none; 
	margin: 0.3em; 
	padding: 0.4em;  
}

/* Style changes navigation link text color to white and removes the underline */
nav li a { 
	color: #FFFFFF; 
	text-decoration: none; 
}

/* Style displays the mobile class */
.mobile {
	display: inline;
}

/* Style hides the desktop class */
.desktop {
	display: none;
}

/* Style for the main specifies a block display, text properties, margins, padding, rounded corners, and borders  */
main {
	display: block;
	font-family: Verdana, Arial, sans-serif;
	font-size: 1em;
	margin-top: 0.5em;
	padding: 1em;
	border-radius: 1em;
	background-color: #FFFFFF;
	border-top: solid 0.2em #009933; 
	border-bottom: solid 0.2em #009933;
}

/* Style for the footer specifies font size, text alignment, and top margin */
footer {
	font-size: .70em;
	text-align: center;
	margin-top: 2em;
}

/* Style hides the tablet class */
.tablet {
	display: none;
}

/* Media query for tablet layout targets screen size with a minimum width of 660px.  */ 
@media only screen and (min-width: 660px) {

	/* Style specifies a horizontal display for navigation links */
	nav li {
		display: inline;
		float: left;
		margin-left: 1%;
		margin-right: 1%;
		padding-left: 0;
		padding-right: 0;
		width: 18%;
		white-space: nowrap;
	}

	/* Style specifies clear and top margin properties for the main element */
	main {
		clear: left;
		margin-top: 4em;
	}

	/* Style specifies to hide the mobile class */
	.mobile {
		display: none;
	}

	/* Style specifies to display the desktop class */
	.desktop {
		display: inline;
	}

	/* Style specifies a display, list style position, and bottom margin for the items class */
	.items	{
		display: block;
		list-style-position: inside;
		margin-bottom: 5em;
	}

	/* Style specifies to display the tablet class */
	.tablet {
		display: block;
	}

	/* Style specifies a font weight and top margin for description list terms */
	dt	{
		font-weight: bold;
		margin-top: 0.7em;
	}

}

/* Media query for desktop layout targets screens with a minimum width of 830px. */

@media only screen and (min-width: 830px) {
	 
	/* Style specifies width for container */ 
	#container {
		width: 80%;
	}

	/* Style specifies margin and padding for the unordered list within the nav */
	nav ul {
		margin: 0;
		padding-left: 0.50%;
		padding-right: 0.50%;
	}

	/* Style for navigation list items specifies a border radius, border, margin, width, and padding */ 
	nav li {
		border-radius: 0;
		border-top: solid #000000;
		border-bottom: solid #000000;
		margin-left: 0;
		margin-right: 0; 
		padding: 0;
		width: 20%;
	}

	/* Style for navigation links specifies display and padding */
	nav li a {
		display: inline-block;
		padding: 0.7em;
	}

	/* Style rules for pseudo-classes */ 
	nav li a:link {
		color: #FFFFFF;	
	}

	nav li a:visited {
		color: #FFFF99;	
	}

	nav li a:hover {
		color: #FFFF00;
		font-style: italic;
	}

	/* Style specifies border, box shadow, and margins for the main element */
	main {
		border-style: none;
		box-shadow: 0.5em 0.5em 0.5em #404040;
		margin-bottom: 1em;
		margin-top: 1em;
	}

	/* Style specifies left and right padding for paragraph elements within the main element */
	main p {
		padding-left: 0.5em;
		padding-right: 0.5em;
	}

	/* Style specifies a bottom margin for the items class */
	.items	{
		margin-bottom: 6em;
	}

	/* Style specifies a gradient for the body element */ 
	body {
		background: -moz-linear-gradient(#FFFFFF, #FFFF99); /* Firefox */ 
		background: -o-linear-gradient(#FFFFFF, #FFFF99); /* Opera */ 
		background: -webkit-linear-gradient(#FFFFFF, #FFFF99); /* Chrome, Safari */
		background: linear-gradient(#FFFFFF, #FFFF99); 
		background-attachment: fixed;
	}

}