.post {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f4f4f4;
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.post img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.post h2, .post h3 {
    margin: 10px 0;
    color: #333;
}

.post p {
    color: #666;
    font-size: 16px;
}

.post strong {
    color: #000;
    font-weight: bold;
}

/* Adds a bit of space between paragraphs and makes strong tags stand out */
.post p + p {
    margin-top: 5px;
}

/* Specific styles for Net Worth to make it stand out more */
.post strong {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    color: #007BFF; /* A nice blue that stands out */
}
