/* Custom styles for the Inter font and dark background */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* Apply custom styles to the body element */
body {
    font-family: 'Inter', sans-serif;
    background-color: #121212; /* Very dark background (primary-dark) */
    color: #E5E7EB; /* Light gray text */
    line-height: 1.6;
}

/* Custom class from the original file (though most highlighting is handled by Tailwind utility classes in the HTML) */
.text-accent {
    color: #FBBF24; /* Amber/Orange color for highlights (accent-orange) */
}
