/* Reset margin and padding for body */
body {
    margin: 0;
    padding: 0;
}

/* Center the container and individual-post elements */
.post-container {
    display: flex;
    justify-content: center;
    align-items: center;  
   
}

.individual-post {
    text-align: center;
    max-width: 900px; /* Adjust the max-width as needed */
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    margin-top: 50px;
}

/* Center the image within the individual-post */
.individual-post img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    border-radius: 4px;
}

/* Style the text for readability */
.individual-post h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.individual-post p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    line-break:auto;
}

.individual-post a {
    color: #007bff;
    text-decoration: none;
}

.individual-post a:hover {
    text-decoration: underline;
}

