body {
    text-align: center;
    background-color: #416140;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
  }

  .b {
    font-family: Arial, Helvetica, sans-serif;
  }

  .sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding: 0;
    z-index: 2;
  }


  @import url('https://fonts.googleapis.com/css?family=Work+Sans:400,600');

  .container {
    width: 80%;
    margin: 0 auto;
  }

  nav {
    background: #004613;
  }

  header::after {
    content: '';
    display: table;
    clear: both;
    /* floats */
  }

  .logo {
    height: 5ex;
    padding: 20px 10px;
    display:inline-block;
  }
  header {
    width:100%;
  }

  nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  li {
    padding-bottom:1ex;
  }
  nav li {
    display: inline-block;
    padding-left:20px;
    padding-top: 23px;
    position: relative;
  }

  nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
  }

  nav a:hover {
    color: #17ff1e;
  }

  nav a::before {
    content: '';
    display: block;
    height: 5px;
    background-color: #00a100;

    position: absolute;
    top: 0;
    width: 0%;

    transition: all ease-in-out 250ms;
  }
  nav a#active {
    content: '';
    color: #00a100;

  }

  nav a:hover::before {
    width: 100%;
  }

  a {
    color: rgb(216, 216, 216);
    /* lovely links :) */
  }
  h2 {
    padding: 3em 0;
    background-color: #004613;
  }
  h3 {
    padding: 1em 0;
    background-color: #004613;
  }
  .disclaimer {
line-height:1em;
  }
  .disclaimer small {
    display:block;
  }
  em {
    font-size: 1.5em;
  }
  strong {
    font-size: 1.5em;
    color:pink;
  }
  .button {
    text-decoration: none;
    padding:2ex;
    border-radius: 1ex;
    background-color: green;
    margin:1ex;
    display: inline-block;
  }