/* This is some default styling */
.grid-container .block {
  height: 500px;
}
  .grid-container .block p {
    padding: 0.5rem; }
  .grid-container .block:nth-of-type(even) {
    background-color: #CCC;
  }
    .grid-container .block:nth-of-type(even) p {
      color: white;
    }
  .grid-container .block:nth-of-type(odd) {
    background-color: #AAA;
  }
