/* Adding skip link for better UX on terminal based browsers and for accessibility
 * based on https://www.w3schools.com/accessibility/accessibility_skip_links.php */
.skiplink {
  list-style-type: none;
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skiplink:focus {
  position: static;
  width: auto;
  height: auto;
}
