* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
  }
  .header {
    background-color: #0075c8;
    width: 100%;
    height: 100px;
    display: block;
  }
  
  .inner_header {
    width:1000px;
    height: 100%;
    display: block;
    margin: 0 auto;
    font-family: 'Trispace', sans-serif;
  }
  
  .logo_container {
    height: 100%;
    display: table;
    float: left;
  }
  
  .logo_container h1 {
    color: white;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
  }
  
  .navigation {
    float: right;
    height: 100%;
  }
  
  .navigation a {
    height: 100%;
    display: table;
    float: left;
    padding: 0px 20px;
  }
  
  .navigation a li {
    display: table-cell;
    vertical-align: middle;
    font-size: 25px;
    color: white;
  }
  
  .navigation a:last-child {
      padding-right: 0;
  }
  