/* Reset default margin and padding */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Define a background color and font styles */
body {
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Style the header */

header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: auto;
    min-height: 300px;
    align-items: center;
}

.header_heading_parent {
    width: 70%; 
    text-align: center;
    color: white; 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100%; 
    margin: 0 auto;
}

.header_heading_child {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    overflow: auto;
}

@media (max-width: 768px) {
    .header_heading_child {
        font-size: 14px; /* Adjust font size */
        padding: 10px; /* Adjust padding */
    }
}


/* Style navigation links */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #2a2e35;
    padding: 10px 0;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

nav li {
    margin-right: 20px;
    margin-bottom: 10px; /* Add some space between list items */
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #004c99;
}

/* Style the main content area */
main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Style article headings */
article h2 {
    font-size: 24px;
    margin-top: 20px;
}

/* Style list items in articles */
article ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 10px;
}

/* Style footer */
.footer-basic {
    padding: 40px 0;
    background-color: #2a2e35;
    color: #ffff;
}

.footer-basic ul {
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-basic li {
    padding: 0 10px;
}

.footer-basic ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer-basic ul a:hover {
    opacity: 1;
}

.footer-basic .social {
    text-align: center;
    padding-bottom: 25px;
}

.footer-basic .social > a {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin: 0 8px;
    color: inherit;
    opacity: 0.75;
}

.footer-basic .social > a:hover {
    opacity: 0.9;
}

.footer-basic .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 0;
}