* {
    margin: 0;
    padding: 0;
  }
  
  html, body {
    height: 100%;
  }

  body {
    font-family: PT Serif , sans-serif;
    color:#555;
  }

  .wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .content {
    flex: 1 0 auto;
  }
  
  .footer {
    flex: 0 0 auto;
    height: 80px;
    background: white;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 70px;
  }
  
  h1 { font-size: 2.5em; }
  h2 { font-size: 2em; }
  h3 { font-size: 1.5em; }
  h4 { font-size: 1em; }
  h5 { font-size: 0.5em; }
  h6 { font-size: 0.25em; }

  h1, h2, h3, h4, h5, h6 {
    color: #333;
  }
  
  img[alt=tn] {
    width: 250px;
  }
  
  .logo {
    font-size:2em;
    color:slategrey;
    float:left;
    margin-top: -0.1em;
    margin-right: 0.25em;
  }

  ul {
    list-style: disc inside;
  }

  li {
    margin-bottom: 0;
  }

/**/
  .navBar{
    background-color: white; /*#009cde*/
    overflow: hidden;
  }
  
  /*Floats each item to the left with padding of 14 & 16 px.
  Removes the underline with text decoration = none.*/
  .navBar a{
    float: left;
    color: black;
    padding: 13px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /*Active page menu link*/
  .navBar a.active{
    float: left;
    color: orangered;
    padding: 13px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /*Background color change during hover state*/
  .navBar a:hover{
    background-color: white;
    color: #009cde;
  }
  
  /*Hides the menu Icon which will show when the nav needs to be responsive*/
  .navBar .icon{
    display: none;
  }
  
  /*Set your custom screen width here replacing 700*/
  @media (max-width: 700px){
  /*Ignores the first link (which is Home) in the div and       applies 'display = none' to everything else.   Basically hiding everything but Home*/
  .navBar a:not([class=logo]) { display: none; }

  /*Brings the menu icon into view and floats it to the right*/
    .navBar a.icon{
      display: block; float: right;
    }
    
  /*The navBar class will be changed to 'navBar responsive' using JS. This chunk of CSS makes the menu icon stay where it is by making the position absolute within it's parent 'right top corner'. Without this, the icon will get kicked around when the items are collapsed and expanded*/
    .navBar.responsive {
      position: relative;
    }
    .navBar.responsive a.icon {
      position: absolute;
      right: 0;
      top: 20px; /* based on navigation block padding*/
    }
    
  /*Removes the originally set float and brings them to view*/
    .navBar.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }
/**/

.navigation {
  float: right;
  padding: 20px 0;
}

.logo {
  margin: auto;
}

/* hide mobile version by default */
.logo .mobile {
  display: none;
}
/* when screen is less than 960px wide
   show mobile version and hide desktop */
@media (max-width: 960px) {
  .logo .mobile {
    display: block;
  }
  .logo .desktop {
    display: none;
  }
}