/**
 * Navigation Menu
 */

.nav {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;

  width: 32px;
  max-height: 32px;
  overflow: hidden;
  transition: width 0.25s, max-height 0.25s;

  background: #222;
  color: #eee;
  font-family: sans-serif;
  font-size: 12pt;
}

.nav:hover {
  width: 128px;
  max-height: 288px;
}

.nav > li {
  height: 32px;
  line-height: 32px;
  white-space: nowrap;

  list-style-type: none;
}

.nav > li > a {
  display: block;
  box-sizing: border-box;
  padding: 0 8px;

  color: inherit;
  text-decoration: inherit;
  border: none;
  background: rgba(51, 51, 51, 0);
  transition: background 0.25s, color 0.25s;
}

.nav > li > a:hover {
  color: rgb(65, 131, 196);
  background: rgba(51, 51, 51, 1);
}

.nav > li > span.hamburger {
  display: inline-block;
  Width: 32px;
  text-align: center;
  user-select: none;
}
