body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
  }
  
  .blog-header {
    background-color: #1f2021;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  .blog-header h1 {
    margin: 0;
    font-size: 2.5rem;
  }
  
  .blog-header p {
    font-size: 1.1rem;
  }
  
  .blog-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns */
    gap: 1em;
    width: 80%;
    max-width: 1200px; /* Adjusted for a wider container */
    margin: 40px auto;
  }
  
  .blog-post {
    background-color: #fff;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .blog-title h1 {
    margin: 0;
    font-size: 1.5rem; /* Adjust this value to decrease the size of the blog name */
}

.blog-title p {
    font-size: 1rem; /* Optionally, adjust the font size of the subtitle if needed */
}

  
  .post-date {
    font-size: 0.9rem;
    color: #666;
  }
  
  .post-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 20px;
  }
  
  .post-excerpt p {
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #00c7fc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .read-more-btn:hover {
    background-color: #009ee3;
  }
  
  .blog-footer {
    background-color: #1f2021;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
  }
  
  @media (max-width: 768px) {
    .blog-content {
      grid-template-columns: 1fr; /* One column on small screens */
    }
  
    .blog-header h1 {
      font-size: 1.75rem;
    }
  
    .blog-header p,
    .post-title {
      font-size: 1rem;
    }
  }
  