h1 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
  }



  /* Additional styles as needed */
  .blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    height: auto;
    font-family: 'Poppins', sans-serif;
  }


/* Style for blog post container */
.blog-post {
    margin-bottom: 20px;
    padding: 20px;
    border: 5px solid rgb(180, 85, 1);
    border-radius: 5px;
}

/* Style for post title */
.blog-post h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

/* Style for post image */
.blog-post img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
}


/* Style for post content */
.blog-post div {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Style for post creation date */
.blog-post p {
    font-size: 14px;
    color: #000000;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

/* Style for comment section */
.comment-section {
    margin-top: 20px;
}

/* Style for comment form */
.comment-form {
    margin-top: 20px;
}

/* Style for comment form labels */
.comment-form label {
    display: block;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

/* Style for comment form inputs */
.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-family: 'Poppins', sans-serif;
}

/* Style for comment form submit button */
.comment-form button {
    padding: 8px 16px;
    background-color: #ff9900;
    color: #000000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.comment-form button:hover {
    background-color: #b36b00;
    color: #fff;
}
/* Style for individual blog post container */
.post {
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

/* Style for post title */
.post h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Style for post image */
.post img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
}

/* Style for post content */
.post div {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

/* Style for post creation date */
.post p {
    font-size: 14px;
    color: rgb(244, 124, 4)000;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}