/* General Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.8;
}

/* Navigation Bar */
nav {
    background-color: #005bb5;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

nav a {
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffd700;
}

/* Main Content Area */
main {
    padding: 30px;
    max-width: 1000px;  /* Increased width for more space */
    margin: auto;
    background-color: white;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Headings */
h1 {
    font-size: 2.5em;
    color: #005bb5;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 0.03em;
}

h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #005bb5;
    padding-bottom: 10px;
}

/* Article List */
ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

li a {
    text-decoration: none;
    font-weight: bold;
    color: #005bb5;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

li a:hover {
    color: #ffd700;
}

/* Article Meta Information */
li p {
    margin: 5px 0;
    color: #777;
    font-size: 0.95em;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Profile Image for About Me */
img.profile {
    width: 180px;  /* Increased size */
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #005bb5;
    color: white;
    margin-top: 40px;
    font-size: 1em;
}

/* Make post content wider and more readable */
.post-content {
    width: 90%;
    margin: auto;
    padding: 20px;
    font-size: 1.15em;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        max-width: 100%;
        padding: 20px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }
}
