/* Center the site title */
.title {
    font-size: 30px;
    text-align: center;
    display: block;
}

/* Center the navigation menu */
nav {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px; /* Adjust spacing between links */
}

nav ul li {
    display: inline;
}

/* Center-align the Latest section */
#latest {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Style wrapper for the latest post */
.latest-wrapper {
    text-align: center;
    width: 100%;
    max-width: 600px;
}


/* Center and style metadata */
.post-metadata {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.post-metadata p {
    margin: 5px 0;
}

.post-metadata a {
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
}

.post-metadata a:hover {
    text-decoration: underline;
}
