body {
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
  .menu-button svg {
    /* Hide the default icon */
    display: none;
  }
  .menu-button::before {
    /* Hamburger icon lines */
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: black;
    position: relative;
  }
  .menu-button::before, .menu-button::after {
    /* Additional lines for the hamburger */
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: black;
    position: relative;
  }
  .menu-button::before {
    top: -8px;
  }
  .menu-button::after {
    top: 8px;
  }
  .menu-button.active svg {
    /* Show close icon when active */
    display: block;
  }
  .menu-button.active::before, .menu-button.active::after {
    /* Hide hamburger lines when active */
    display: none;
  }
}