body {
    font-family: 'Arial', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #f0f0f0;
    background-color: #000000;
    line-height: 1.6;
}

nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

nav a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffffff;
}

.blog-header {
    margin-bottom: 30px;
}

.blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.search-bar {
    margin-bottom: 30px;
}

.search-bar input {
    width: 100%;
    padding: 10px;
    background-color: #222;
    border: 1px solid #333;
    color: #f0f0f0;
    font-size: 1rem;
    border-radius: 4px;
}

.blog-post {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.blog-post h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.blog-post p {
    margin-bottom: 15px;
    color: #dddddd;
}

.post-date {
    color: #999;
    font-size: 0.9rem;
}