/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center; /* Center align all content */
}

/* Blog Container */
.blog-post {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: left; /* Align text inside the post to left */
}

/* Back Button Styling */
.back-button {
    display: inline-block;
    margin: 20px;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.back-button:hover {
    background-color: #0056b3;
}

/* Blog Title */
h1 {
    font-size: 28px;
    color: #333;
    text-align: center;
}

/* Blog Image */
.blog-post img {
    max-width: 100%;
    border-radius: 5px;
    display: block;
    margin: 10px auto;
}

/* Blog Content */
p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Headings */
h3 {
    color: #007bff;
    margin-top: 15px;
}
