  .masonry-grid {
    column-count: 1;
    column-gap: 2rem;
  }
  @media (min-width: 768px) {
    .masonry-grid {
      column-count: 2;
    }
  }
  @media (min-width: 1024px) {
    .masonry-grid {
      column-count: 3;
    }
  }
  .break-inside-avoid {
    break-inside: avoid;
  }
  .nav-scribble path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 0.4s ease-out;
  }
  .group:hover .nav-scribble path {
    stroke-dashoffset: 0;
  }
