/*
  File: css/style.css
  Description: Custom styles for the FishNZ Website.
  
  The majority of styling is handled by Tailwind CSS utility classes
  directly in the HTML. This file is for global styles and minor adjustments.
*/

/* 
  Sets the default font for the entire site to 'Inter', which we link in the HTML.
  This ensures a consistent, modern look.
*/
body {
    font-family: 'Inter', sans-serif;
}

/* 
  Enables smooth scrolling when a user clicks on an anchor link,
  like the "Features" link in the navigation bar.
*/
html {
    scroll-behavior: smooth;
}