/* =============================
   General Page Styles
   ============================= */
body {
  
}

/* =============================
   Header Styles
   ============================= */
header {
   text-align: center;
   margin-top: 5%;
   background-color: aquamarine;
}

/* =============================
   Navigation Styles
   ============================= */
nav {
float: left;
width: 25%;
position: fixed;
color: rgb(0, 0, 0);
background-color: aquamarine;
}

nav ul {
list-style-type: none;
}

nav ul li {
}

nav ul li a {
  
}

/* Hover effect for links */
nav ul li a:hover {
   color: rgb(255, 0, 0);
 
}

/* =============================
   Main Content Styles
   ============================= */
main {
 float: right;
 width: 70%;
}

/* =============================
   Footer Styles
   ============================= */
footer {
 clear: both;
 text-align: center;
 width: 100%;
 background-color: aquamarine;
}
