/* navigation styling */


nav {
// height: 50px;
  width: 100%;
  background-color: white;
  color: #eee;
  position: fixed;
  z-index: 10;
  padding: 1rem 0;
}
nav ul {
  padding: 0;
  margin: 0;
}
nav li {
  display: inline;
  float: left;
}
nav a {
  display: inline-block;
  width: 100px;
  text-align: center;
  text-decoration: none;
 // padding: 10px 0;
  color: black;
  text-decoration: none;
}
nav li:hover {
  background-color: gold;
}

nav a#openup {
  display: none;
}


@media screen and (max-width: 580px) {

.nav-logo{
height: 1rem;
width: 1rem;
}

nav {
    height: auto;
    border-bottom: 0;
   // padding: 2rem;
  }
  nav ul {
    display: none;
    height: auto;
  }
  nav li {
    width: 100%;
    float: left;
    position: relative;
  }
  nav a {
    text-align: left;
    width: 100%;
    text-indent: 25px;
    background: white;
    border-bottom: 1px solid #555;
  }
  nav a:hover {
    background: gold;
  }
  nav a#openup:after {
    content: '|||';
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    /* IE 9 */
    -webkit-transform: rotate(-90deg);
    /* Safari and Chrome */
    width: 30px;
    height: 30px;
    display: inline-block;
    position: absolute;
    left: 20rem;
    top: 20rem;
    //margin-top: .5rem;
  }

  nav a#openup {
    display: block;
    background-color: white;
    width: 100%;
    position: relative;
    margin-top: 2rem;
  }

}

.cf:before, .cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  //zoom: 1;
}
