@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,600;1,700&display=swap');
body {
    font-family: 'poppins';
    margin: 0;
    padding: 0;
  }
  
  #blog-container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
  }
  
  .blogs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .post {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .post img {
    width: 100%;
    height: 75vh;
    display: block;
    margin-bottom: 10px;
  }
  
  .post h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
  }

  
  .post h2 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
  }

  .post p {
    font-size: 15px ;
    line-height: 1.5;
    margin: 0;
  }
  
  .post a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    margin: 10px 0;
  }

  @media screen and (max-width: 600px) {
    .post img {
      width: 100%;
      height: 50vh;
      display: block;
      margin-bottom: 10px;
    }
    #blog-container {
      width: 100%;
      margin: 0 auto;
      padding: 20px;
    }
  }