/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: peachpuff;
  color: black;
  font-family: Verdana;
}


p {
  width: 65%;
  margin-top: 20px;
  margin-right: 50px;
  margin-bottom: 30px;
  margin-left: 20px;
}


          /* For best practice, move CSS below to an external CSS file. */
                  
  .navbar {
  position: fixed;
  margin: 40px;
  float: left;
  width: 200px;
  background-color: #a0bc69; 
  box-sizing: border-box;
  }

  .nav-list li {
  margin-bottom: 10px;
  }

  .nav-list {
  list-style: none; /* Remove bullet points */
  display: flex; /* Align children in a row */
  flex-direction: column;
  justify-content: space-around; /* Even spacing between links */
  margin: 0;
  padding: 0;
  height: 100%;
  justify-content: flex-start;
  }

  .nav-list a {
  display: block;
  text-decoration: none; /* Remove underline */
  padding: 8px 12px;
  transition: background-color 0.3s ease;
  border-radius: 4px;
  }
  
  