 
 .nav ul {  
  list-style: none;
  background-color: #002633;
  text-align: center;
  padding: 0;
  margin: 0;
}
.nav li {
  font-family: 'Arial Narrow', sans-serif;
  font-size: 1.2em;
  line-height: 40px;
  height: 40px;
  border-right: 1px solid #888;
  border-left: 1px solid #888;
  border-bottom: 1px solid #888;
  color: #fff;
  background-color: #004860;
}
 
.nav a {
  text-decoration: none;
  display: block;
  transition: .20s background-color;
}
 
.nav a:hover {
  background-color: #005f5f;
  color: #eeeeee;
}
 

@media screen and (min-width: 600px) {
  .nav li {
    width: 270px;
    border-bottom: none;
    height: 50px;
    line-height: 50px;
    font-size: 1.4em;
  }
 
  /* Option 1 - Display Inline */
  .nav li {
    display: inline-block;
    margin-right: -4px;
  }
 
  /* Options 2 - Float
  .nav li {
    float: left;
  }
  .nav ul {
    overflow: auto;
    width: 600px;
    margin: 0 auto;
  }
  .nav {
    background-color: #444;
  }
  */
}