/* Some very basic styles to make things look sensible - you don't need to use these */

* {
  box-sizing: border-box;
  font-family: sans-serif
}

h1, footer {
  max-width: 0;
  margin: 0 auto;
}

#instafeed {
  display: list-item;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  max-width: 100%;
  margin: auto;
}

#instafeed a {
  display: block;
}

#instafeed img {
  display: block;
  width: 100%;
}