/* 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." */

H1 {
  text-align: center;
  color: black;
  }
  
H2 {
  margin: 60px 220px 30px;
  text-align: left;
  color: black;
}

H3 {
  margin: 10px 220px 10px;
  text-align: left;
  color: black;
}

body {
  background-color: darkseagreen;
  color: black;
  font-family: "Times New Roman", Times, serif;
}

p {
  margin: 5px 220px 5px;
}

ul {
  margin: 5px 220px 5px;
}

th {
  text-align: left; 
  color: black;
}

td {
  text-align: left;
}

table {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 220px;
    margin-right: 30px;
    text-align: center;
}

hr {
       display: block;
       position: relative;
       padding: 0;
       margin: 8px auto;
       height: 0;
       width: 50%;
       max-height: 0;
       font-size: 1px;
       line-height: 0;
       clear: both;
       border: none;
       border-top: 1px solid #aaaaaa;
       border-bottom: 1px solid #ffffff;
    }
    
nav.vertical {
     ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      width: 200px;
      background-color: darkseagreen;
      height: 50%; /* Full height */
      position: fixed; /* Make it stick, even on scroll */
      overflow: auto; /* Enable scrolling if the sidenav has too much content */
    }
    
    li a {
      display: block;
      color: #000;
      padding: 8px 16px;
      text-decoration: none;
    }

    /* Change the link color on hover */
    li a:hover {
      background-color: #555;
      color: white;
    }
    
    .active {
      background-color: #04AA6D;
      color: white;
    }
}

