* {
    margin: 0;
    padding: 0;
    font-family: "Monserrat", sans-serif;
  }

  body{
    display: flexbox;
  }
  .header {
    width: 100%;
    position: fixed;
    margin: 0 auto;
    text-align: center;
    overflow: scroll;
    z-index: 1;
    background-color: white;
  }
  
  .header img {
    width: 500px;
    margin: 10px auto;
    display: block;
  }
  
  .navbar {
    width: 80%;
    height: 50px;
    display: block;
    margin: 0 auto;
    background-color: #0075b0;
  }
  
  #navbarItems {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 90%;
    top: 0%;
    left: 0%;
    height: 50px;
  }
  
  .navbarItem {
    float: left;
  }
  
  .navbarItem a {
    display: block;
    color: white;
    font-size: larger;
    text-align: center;
    padding: 14px 30px;
    text-decoration: none;
  }
  
  .active {
    background-color: black;
  }
  
  .navbarItem a:hover {
    background-color: #188cc2;
  }
  .content {
    position: absolute;
    top: 300px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    overflow: scroll;
    display: flexbox;
  }
  footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: none;
    text-align: center;
  }
  
  footer p {
    padding: 15px 10px;
    width: 90%;
    margin: 0 auto;
  }
  
  .disclaimer {
    color: #0075b0;
    font-style: italic;
    width: 80%;
    margin: 0 auto;
    text-align: justify;
    overflow: scroll;
    background-color: transparent;
    padding: 10px 20px;
  }
  
  .footContact {
    color: white;
    width: 75%;
    margin: 0 auto;
    text-align: center;
    overflow: scroll;
    background-color: #0075b0;
    padding: 10px 20px;
  }

  .footContact a{
    color: white;
    text-decoration: none;
  }