/* Custom CSS for Portfolio Website */

body {
    font-family: 'Inter', sans-serif;
    /* Background color is set in the HTML body tag */
    /* Text color is set in the HTML main tag */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif; /* Curved-style font for headings */
}

/* Custom scrollbar for better aesthetics */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #e0e0e0; /* Lighter track for white background */
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Ensure smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Font Awesome is linked in the HTML head */
