/* We use this media query to add styles to any device that supports media queries */
@media only screen {
  /* line 4, ../scss/media-query.scss */
  .newspaper {
    column-count: 1;
    -moz-column-count: 1;
    -webkit-column-count: 1;
  }

  /* line 9, ../scss/media-query.scss */
  .content {
    padding-top: .5em;
  }
}
/* Used to alter styles for screens at least 340px wide. This is where the grid changes. */
/* Used to alter styles for screens at least 450px wide. This is where the grid changes. */
@media only screen and (min-width: 450px) {
  /* line 19, ../scss/media-query.scss */
  .content {
    padding-top: .8em;
  }
}
/* Used to alter styles for screens at least 525px wide. This is where the grid changes. */
@media only screen and (min-width: 525px) {
  /* line 24, ../scss/media-query.scss */
  .newspaper {
    column-count: 2;
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-gap: 2em;
    -moz-column-gap: 2em;
    -webkit-column-gap: 2em;
  }

  /* line 32, ../scss/media-query.scss */
  .content {
    padding-top: 1em;
  }
}
/* breakpoint where top-bar nav changes fr small to large */
/* Used to alter styles for screens at least 768px wide. This is where the grid changes. */
@media only screen and (min-width: 768px) {
  /* line 42, ../scss/media-query.scss */
  .content {
    padding-top: 1.5em;
  }
}
/* Used to alter styles for screens at least 960px wide. */
@media only screen and (min-width: 960px) {
  /* line 47, ../scss/media-query.scss */
  .content {
    padding-top: 2em;
  }
}
/* Used to alter styles for screens at least 1000px wide. */
/* Used to alter styles for screens at least 1280px wide. */
@media only screen and (min-width: 1280px) {
  /* line 57, ../scss/media-query.scss */
  .newspaper {
    column-count: 3;
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-gap: 2.3em;
    -moz-column-gap: 2.3em;
    -webkit-column-gap: 2.3em;
  }

  /* line 65, ../scss/media-query.scss */
  .content {
    padding-top: 2.5em;
  }
}
/* Used to alter styles for screens at least 1440px wide. */
/* Apply styles to screens in landscape orientation */
/* Apply styles to screens in portrait orientation */
