/*header style*/
h1 {color: black;
  background-color: #a9a9a9;
  grid-area: header;
}
/*grid*/
.grid {display: grid;
  background-color: #d3d3d3;
  grid-gap: 10px;
  padding: 10px;
  grid-template-areas:
    'header'
    'description'
    'source'
    'facts'
    'explanation'
    'image'
}
/*description style*/
.description {color: black;
  font-size: 22px;
  font-family: garamond;
  font-weight: bold;
  grid-area: description;
}
/*facts style*/
.facts {color: purple;
  font-family: garamond;
  font-weight: 10;
  grid-area: facts;
}
/*attribution style*/
.source {color: green;
  grid-area: source;
}
/*explanation style*/
.explanation {color: black;
  font-size: 20px;
  font-family: garamond;
  grid-area: explanation;
}
/*image style*/
img {border-radius: 24px;
width: 100%;
  max-width: 600px;
  height: auto;
}
/*background style*/
body {background-color: #c0c0c0;
}
/*media style*/
@media (min-width: 600px) {
  .header {display: grid;
  justify-items: center;}
  .description {display: grid;
  justify-items: center;}
  .source {display: grid;
  justify-items: center;}
  .facts {display: grid;
  justify-items: center;}
  .explanation {display: grid;
  justify-items: center;}
@media (min-width: 768px) {
  .header {display: grid;
  justify-items: left;}
  .description {display: grid;
  justify-items: left;}
  .source {display: grid;
  justify-items: left;}
  .facts {display: grid;
  justify-items: left;}
  .explanation {display: grid;
  justify-items: left;}
}