/* Import Tailwind CSS base styles */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Add your custom base styles here */
body {
    font-family: 'Manrope', sans-serif;
    background-color: #f5f5f4; /* A solid fallback for the gradient */
    background-image: linear-gradient(to right, #e7e5e4, #f5f5f5, #e7e5e4);
    color: #374151; /* text-gray-700 */
}