body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 36px;
    color: #333;
}

.post {
    margin-bottom: 40px;
}

.post .title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.post .meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.post .content {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
}