@tailwind base;
@tailwind components;
@tailwind utilities;
body {
  font-family: "Manrope", sans-serif;
}
@layer base {
  a {
    @apply no-underline;
  }
}

/* Only underline links inside rich content */
@layer components {
  .rich a {
    @apply underline underline-offset-2;
  }
  .rich a:hover {
    text-decoration-thickness: from-font;
  }
}
