/****************/
/* articles.css */
/****************/
body {
  background: white;
  width: 60%;
  margin:0 auto;

  font-family: 'Open Sans';
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

div p {
  text-align: justify;
  margin-bottom: 15px;
  color: #505e66;
}

h1 {
  font: 36px/1.1 'Open Sans';
  margin-bottom: 20px;
  color: #505e66;
}

h2 {
  font: 26px/1.4 'Open Sans';
  font-weight: normal;
  padding-top: 10px;
  padding-bottom: 20px;
}

a {
  /* color: #de5d5f; */
  color: #0957c3;  /* Pantone 2132 C */
  text-decoration: underline;
}

/*********/
/* 2 columns grid */
/*********/
.grid-container {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  padding: 10px;
}

.grid-item {
  padding: 20px;
}

/**********/
/* Footer */
/**********/
footer {
  width: 100%;
  margin:30px auto;
  color: #505e66;
}


/**********/
/* Media Query */
/**********/
@media screen and (max-width: 760px) {

  body {
    width: 100%;
  }

  h1 {
    font: 24px/1.1 'Open Sans';
    margin-bottom: 10px;
  }

  h2 {
    font: 18px/1.4 'Open Sans';
    font-weight: normal;
    padding-bottom: 0;
  }

  figure {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .grid-container {
    display: block;
    grid-template-columns: auto;
    padding: 0;
    margin: 0;
  }
  .grid-item {
    padding: 0;
  }
}
