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