/* 64em is also 1028px when basefont is 16px */
@media only screen and (min-width: 64rem) {
    nav{
        height: 50px;
    }

    nav button {
        display: none;
        
    }
    nav ul.hide{
        display: flex;
    }
    nav ul{
        margin-left: 10%;
    }
    nav ul li {
      float: left;
      display:block;
     text-align:center;
      width:200px; /* fixed width */
      text-decoration:none; 
  

  }
  nav ul li a {
      border: none;
      border-right: 1px solid rgba(0, 0, 0, 0.3) ;
      padding: .6rem 1rem;
      
  }
  footer{
      height: 80px;
      
  }
  
  
} 