body {
            background-color: rgb(132, 191, 255);
        }
        .agbalumo {
    font-family: "Agbalumo", serif;
}
svg {
    width: 20px;
    height: 20px;
}

 .track {
      display: flex;
      gap: 12px;
      animation: marquee 18s linear infinite;
      width: max-content;
    }
 
    @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
 
    .track:hover {
      animation-play-state: paused;
    }
  .nav-btn {
    position: relative;
  }

  .nav-btn::after {
    content: attr(data-tip);
    position: absolute;
    left: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
    background: rgb(132, 191, 255);
    border: 1px solid rgb(4, 125, 255);
    color: #fff;
    font-family: 'Agbalumo', cursive;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 8px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity .18s ease;
  }

  .nav-btn:hover::after {
    opacity: 1;
  }   