/* Style the anchor links within h2 elements */
h2 > a {
    color: blue; /* Set the text color */
    text-decoration: underline; /* Add an underline to the links */
    margin-right: 10px; /* Add some spacing between the link and the heading text */
}

/* Style the anchor links on hover (optional) */
h2 > a:hover {
    color: red; /* Change the text color when hovering over the link */
    text-decoration: none; /* Remove the underline on hover */
}