.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  overflow: hidden;
}

/* Home Articles */
#home-articles .articles-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.backcolor a {
  font-size: 15px;
}

@media (max-width: 1200px) {
  #home-articles .articles-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .backcolor a {
    font-size: 14px;
  }
}

@media (max-width: 770px) {
  /* Stack Grid Items */

  #home-articles .articles-container {
    grid-template-columns: 1fr;
  }
}
.backcolor {
  background-color: #ea7125;

  margin-top: 2rem;
  padding: 1rem 1rem 1rem 1rem;
  width: 100%;
}

/* Below code is to fix the footer to the bottom of the page */
/* #g-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
} */
