@charset 'UTF-8';

.menu-access {
  position: absolute;
  top: -1000px;

  li {
    a {
      display: block;
      position: fixed;
      top: 0;
      left: 25px;
      z-index: 3003;
      transform: translateY(-100%);
      transition: transform 0.2s;
    }

    a:focus {
      top: 25px;
      transform: translateY(0%);
    }
  }
}
