/* Header Styling with Border */
.bh-header {
width: 100%;
margin-bottom: 1.5em; /* Space below the header */
padding: 1.5em; /* Inner padding for spacing */
border: 2px solid #a2a9b1; /* Solid border around the header */
background-color: #ffffff; /* White background */
border-radius: 8px; /* Rounded corners for aesthetics */
text-align: center; /* Center the text */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}
/* Title in the Header */
.bh-header h1 {
font-family: 'Georgia', 'Times New Roman', serif; /* Serif font for title */
font-size: 2.8em; /* Large font size for prominence */
color: #4a4a8c; /* Deep blue color */
margin: 0; /* Remove extra margin */
}
/* Subtitle Text */
.bh-header p {
font-family: 'Arial', sans-serif; /* Clean sans-serif font */
font-size: 1.2em; /* Standard font size for readability */
color: #333; /* Neutral dark gray color */
margin: 0.5em 0; /* Spacing between paragraphs */
}
/* Links in the Header */
.bh-header a {
color: #0066cc; /* Blue for links */
text-decoration: none; /* Remove underline */
font-weight: bold; /* Bold for emphasis */
}
.bh-header a:hover {
text-decoration: underline; /* Add underline on hover */
}