  #menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    max-width: 300px;
    width: 80%;
    height: 100%;
    padding-top: 2rem;
    background-color: #fff;
    box-shadow: 0 10px 20px -4px #000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 0.3s ease, visibility 0.2s ease, transform 0.3s ease;
  }

  #menu.show {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .menu-content {
    padding-top: 2.8rem;
  }

  .menu-content h1 {
    padding-left: 2rem;
  }

  .menu-navlinks li {
    padding-left: 2rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }

  .menu-navlinks li:hover {
    background-color: #f00;
    color: white;
  }

  .menu-navlinks li a {
    text-decoration: none;
    font-size: medium;
  }

  .menu-toggler {
    width: 1.75rem;
    height: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    overflow: hidden;
    padding: 15px;
    background-color: #f00;
    margin-top: 15px;
  }

  .menu-toggler span {
    background-color: white;
    width: 100%;
    height: 4px;
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .menu-close {
    float: right;
    padding: 2px;
  }

  .menu-close::before {
    color: #000;
    content: "×";
    display: inline-block;
    font: 32px / 9px Pictos-IF;
    margin: 0 9px 0 -8px;
  }