/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    background-color: #f4f4f9;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.header-links {
    margin-top: 3em;
    margin-bottom: 0em;
    text-align: left;
    width: 90%;
}

.header-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.5em;
    text-align: left;
    background-color: #63606f;
    padding: 1em;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.header-links a:hover {
    background-color: #848494;
}

header {
    background: #100d26;
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    text-align: center;
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

img {
    max-width: 250px; padding: 0em 10% 0 10%; margin: 0 auto; display: block;
}

/* Ensuring text is properly aligned and visible */
.header-title {
    font-size: 1.5em; /* Adjust font size for visibility in smaller header */
    margin: 5px 0; /* Reduce margin for compact appearance */
}

/* Date text styling for better visibility */
.header-date {
    font-size: 0.9em; /* Smaller text for the date */
    opacity: 0.8; /* Slightly lighter text to not overpower main title */
}


h1 {
    font-size: 2.5em;
    color: #eeeeee;
}

P{
    font-size: 1em;
    margin-bottom: 4em;
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: center;
    padding: 1em 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #d1d1d1;
}

/* Content Styles */
main {
    padding: 20px;
    font-size: 1.2em;
    line-height: 1.6;
}

section {
    margin-bottom: 20px;
}

h2 {
    color: #333;
    margin-bottom: 10px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    padding-left: 20px;
    position: relative;
}

li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    background: #5d568f;
    border-radius: 50%;
}

/* Footer Styles */
footer {
    background: #100d26;
    color: #fff;
    text-align: center;
    align-items: center;
    padding: 3em 0;
    position: static;
    bottom: 0;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    
}

h2.footer{
    color: #eeeeee;
    font-size: 2.5em;
    margin: .5em;
}
p.footer{
    color: #eeeeee;
    font-size: 1em;
    margin: 1em;
}
p.footer-bolded{
    color: #eeeeee;
    font-size: 1.1em;
    margin: 1em;
    font-weight: bold;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        margin: 10px auto;
        padding: 10px;
    }

    h1 {
        font-size: 2em;
    }
}
