/* Style sheet created by: Neeve MacGregor 10.23.19 */

/* Style for body specifies a background color */
body {
	background-color: #FFFFFF;
}
	/* Style to create a fluid image*/
	img{
		max-width: 100%
	}
/* 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 {
	font-family: Verdana, Arial, serif;
	font-size: 2em;
	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: 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: #FF6600;
	border-radius: 1em;
	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 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.2em;
	padding: 0.5em;
	border-top: solid 0.2em #FF6600; 
	border-bottom: solid 0.2em #FF6600;
}

/* Style for the footer specifies font size, text alignment, and top margin */
footer {
	font-size: .70em;
	text-align: center;
	margin-top: 2em;
}
/* Style displays the mobile class */
.mobile {
	display: inline;
}

@media only screen and (min-width: 481px) {
/* Style for the image specifies width and float */
img {
		width: 25%;
		float: left;
}

/* Style for the header specifies the bottom margin and top padding */
header p {
		margin-bottom: 4em;
		padding-top: 1.5em;
}

/* Style for nav li specifies the display, float, margins, padding and width */
nav li {
		display: inline;
		float: left;
		margin-left: 1%;
		margin-right: 1%;
		padding-left: 0;
		padding-right: 0;
		width: 23%;
}
/* Style for main specifies floating elements are not allowed on the left and top margin */
main {
		clear: left;
		margin-top: 12em;
}
}
/* Style for .mobile specifies it will not display */
.mobile {
		display: none;
}

/* Style for .desktop specifies it will display as an inline element */
.desktop {
		display: inline;
}
@media only screen and (min-width: 769px) {

/* Container specifies the width */
#container {
		width: 80%;
}

/* Style for nav specifies the top margin */
nav {
		margin-top: -5em;
}

/* Style for nav ul specifies margin and padding of the unordered list */
nav ul {
		margin: 0;
		padding-left: 0.50%;
		padding-right: 0.50%;
}

/* Style for nav li specifies background color, border, margins, padding and width */
nav li {
		background-color: #FFFFFF;
		border-radius: 0;
		margin-left: 0;
		margin-right: 0;
		padding: 0;
		width: 18%;
}

/* nav li a specifies color, display type, padding and font size */
nav li a {
		color: #FF6600;
		display: inline-block;
		padding: 0.7em;
		font-size: 1.25em;
}

/* nav li a:link specifies color */
nav li a: link {
		color: #FF6600;
}

/* nav li a:hover specifies color and font style */
nav li a:hover {
		color: #4C1F00;
		font-style: italic;
}

/* main specifies border, border radius, drop shadow on the box and margin */
main {
		border: none;
		border-radius: 1em;
		box-shadow: 1em 1em 1em #331400;
		margin-top: 1em;
}

/* Hide desktop class for mobile layout */
}
.desktop {
		display: none;
}

.mobile {
		display: inline;
}