 /* Style the navbar */
.navbar {
  overflow: hidden;
  background-color: rgb(0, 33, 71);
}

/* Navbar links */
.navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}

/* Page content */
.content {
  padding: 16px;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 60px;
} 
body{font-family:'Noto Sans',sans-serif;font-size:14px;line-height:1.6;color: rgb(0, 33, 71); background-color: white}
ul{padding:18}
li { padding: 5px 0px}
h2,h3,h4,h5,ol,p{font-weight:400;padding:0;margin-top:0;margin-bottom:1rem}
h1{margin:0;padding:0;font-weight:400;color:#2d7e68;text-transform:uppercase;font-size:30px;line-height:1;letter-spacing:2px}
h3{border-left:6.66667px solid rgb(204, 0, 0);padding-left:13.33333px;padding-right:20px;margin-top:1rem;color:rgb(204, 0, 0);font-weight:700;font-size:20px;clear:both}
h4{color:rgb(204, 0, 0);font-weight:700;font-size:15px;clear:both}
h2{background-color:rgb(204, 0, 0);color:#fff;padding:20px;font-size:24px;line-height:1}





/* Change the color of links on hover */
.navbar a:hover {
    background-color: #ddd;
    color: black;
}
