  /* Define a custom font family for the entire page */
  @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

  body {
      font-family: 'Inter', sans-serif;
      background-color: #000;
  }

  /* Create the gradient background for the body */
  .gradient-background {
      background: linear-gradient(to bottom right, #1b1c1d, #000000);
      min-height: 100vh;
      /* Ensure it covers the whole viewport height */
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
      /* Add some padding for mobile view */
  }

  /* Custom gradient for the buttons to match the logo's color scheme */
  .logo-gradient-bg {
      background-image: linear-gradient(to right, #ff8a00, #e52e71);
  }

  /* Custom gradient border effect for the "Know More" button */
  .logo-gradient-border {
      border: 2px solid transparent;
      border-radius: 9999px;
      /* Tailwind's rounded-full */
      background-clip: padding-box;
      position: relative;
  }

  .logo-gradient-border::after {
      position: absolute;
      content: '';
      top: -2px;
      bottom: -2px;
      left: -2px;
      right: -2px;
      background: linear-gradient(to right, #ff8a00, #e52e71);
      z-index: -1;
      border-radius: 9999px;
      /* Tailwind's rounded-full */
  }