/* =============================
   General Page Styles
   ============================= */
body {
  background-color: white;
	text-align: center;
	padding: 10px;
}

/* =============================
   Header Styles
   ============================= */
header {
	background-color: lightblue;
	text-align: center;
	padding: 10px;
}

/* =============================
   Navigation Styles
   ============================= */
nav {
	float: left;
	width: 25%;
	background-color: lightgrey;
	padding: 10px;
	text-align: left;

}

nav ul {
	list-style-type: square;
}

nav ul li {
    
}

nav ul li a {
  
}

/* Hover effect for links */
nav ul li a:hover {
	text-decoration: none;
	color: red;
}

/* =============================
   Main Content Styles
   ============================= */
main {
	float: right;
	width: 70%;
	padding: 10px;
 
}

/* =============================
   Footer Styles
   ============================= */
footer {
	background-color: lightblue;
	text-align: center;
	padding: 10px;
	bottom: 0;
	width: 100%;
	position: fixed;
}

