

  #blogItems {
    grid-template-columns: repeat(auto-fit, minmax(12em, 1fr));
  }
  
  #blogItems img {
    margin-bottom: 1em;
  }
  
  #blogItems h3 {
    margin-bottom: 0em;
  }
  
  #blogItems a {
    color: #0ca49f;
  }
  
  #blogItems a.readMore {
    text-decoration: underline;
    color: #e66238;
  }
  
  p.openParagraph {
    margin-bottom: 2em;
  }
  
  /* Është përdorur padding për të caktuar distancë ndërmjet titulli dhe një vije që ka poshtë titullit. */
  body.blog-page h1 {
    padding-bottom: 0.5rem;
  }
 

  @media screen and (min-width: 600px) {
    #blogItems{
      grid-template-columns: repeat(auto-fit, minmax(18em, 1fr));
    }
  }
