@tailwind base;
@tailwind components;
@tailwind utilities;

/* Cookie Consent Popup Styling */
#cookie-consent {
    transition: bottom 0.3s ease-in-out;
}
#cookie-consent.hidden {
    bottom: -80px; /* Move the popup off-screen when hidden */
}

@layer base {
    html {
      font-family: 'Jost', sans-serif;
    }
  }