/* Style sheet created by: Bindu Lamsal Nov 10 2020*/

/* 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;
}

#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;
}
/*STyles specifies padding and margins for unordered list*/
nav ul{
	padding: 0;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}
/*Styles for nav li specifies the background color, rounded corners, remove bullet styl, 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;
}
/* Styles displays the mobile class*/
.mobile{
	display: inline;
}