/* Styling for all links */
a {
    color: #000000; /* Dark blue */
    font-weight:300;
    line-height:3;
}






/* Specific styling for internal links (if needed) */
.container a[href^=".."],
.container a[href^="/"] {
    /* Add any specific styles for internal links here */
    color: #0982D9; /* Dark blue */
    font-weight: bold;
    text-decoration: underline;
}

/* Styling for visited links (optional) */
.container a[href^=".."]:visited,
.container a[href^="/"]:visited {
    color: #000000; /* black - a darker shade for visited links */
}


/* Specific styling for hover state for internal links (if needed) */
.container a[href^=".."]:hover,
.container a[href^="/"]:hover {
    /* Add any specific styles here */
    color: #0000CD; /* Medium blue - slightly lighter for hover effect */

}

/* Specific styling for external links (if needed) */

    /* Add any specific styles for external links here */


/*
#009879

color: #00BFFF; /* Dark blue */

