#nav
{
  font-family: DosisBold, sans-serif;
  font-size: 1rem;
  color: #000;
  width: 17%;
  height: 100vh;
  float: left;
}

#nav ul
{
  padding: 0;
  margin: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

#nav ul li
{
  list-style: none;
  padding: 0.5rem;
  margin-left: 1rem;
  cursor: pointer;
  text-transform: uppercase;
}

#nav ul li.linkActive
{
  cursor: inherit;
  text-transform: uppercase;
  color: #999;
}

#mobileMenuBut
{
  font-family: DosisBold, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  position: fixed;
  visibility: hidden;
  z-index: 999;
  right: 1.5rem;
  top: 1.5rem;
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
  padding: 0.5rem;
  border-radius: 6px;
}

@media only screen and (orientation: portrait)
{
  #mobileMenuBut
  {
    visibility: visible;
  }

  #nav
  {
    visibility: hidden;
    z-index: 998;
    position: fixed;
    width: 100%;
    height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #fff;
  }

  #nav ul
  {
    transform: none;
    top: 0;
  }

}
