/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5; /* Light gray background for subtle contrast */
    color: #333; /* Dark gray text for readability */
}

/* Header Styles */
header {
    background-color: #333; /* Dark header background */
    color: white;
    padding: 20px 0; /* Increased padding for a more spacious header */
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

header h1 {
    margin: 0;
    font-size: 2.5em; /* Larger font size for the title */
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 30px; /* Increased spacing between nav items */
}

nav ul li a {
    color: white; /* White links for contrast against dark background */
    text-decoration: none;
    font-weight: bold; /* Bold links for emphasis */
}

nav ul li a:hover {
    text-decoration: underline; /* Underline on hover for interaction feedback */
}

/* Main Content Styles */
main {
    max-width: 800px; /* Centered content with max width */
    margin: 20px auto; /* Centered with margin */
    padding: 20px;
    background-color: white; /* White background for posts */
    border-radius: 8px; /* Rounded corners for a softer look */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Shadow for depth */
}

/* Blog Post Styles */
.post {
    margin-bottom: 40px; /* Space between posts */
}

.post h2 {
    font-size: 1.8em; /* Larger font size for post titles */
    color: #555; /* Medium gray for post titles */
}

.post p {
    line-height: 1.6; /* Improved line height for readability */
}

/* Footer Styles */
footer {
    background-color: #333; /* Dark footer background to match header */
    color: white;
    text-align: center;
    padding: 15px 0; /* Padding for footer space */
}

footer p {
    margin: 0; /* Remove default margin from footer text */
}

.post-date {
    font-size: 0.9em; /* Smaller font size */
    color: gray; /* Gray color for distinction */
    margin-bottom: 10px; /* Space below the date */
}


