.post-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 25px auto;
}

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

.post-date {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.post-thumbnail {
    width: 90%;
    height: 560px;
    object-fit: cover;
    border-radius: 8px;
    padding: 10px 0;
    margin: 10px 0;
}

.post-content {
    max-width: 90%;
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    padding: 0 20px;
    margin-left: 20px;
}

.post-content p {
    margin: 15px 0;
}

.post-content img {
    width: 100%;
    height: 560px;
    border-radius: 8px;
    padding: 10px 0;
    margin: 10px 0;
}

.post-content pre {
    background-color: #0f0f0f;
    max-width: 40%;
    color: #f8f8f2;
    padding: 15px;
    margin: 20px 0;
}