.mobile {
  display: none;
  position: fixed;
  width: 100%;
  top: 0;
}
.mobile div {
  display: none;
}
.mobile button {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 0;
  text-indent: 200%;
  overflow: hidden;
  background:url("/images/ham.png") center no-repeat;
  background-size: 80%;
  width: 30px;
  height: 30px;
z-index: 1000
}
.mobile button.expanded {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.mobile a {
  display: block;
}

article {
  padding: 0 30px 15px;
}
@media (max-width: 800px) {
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
}
