.container:nth-child(odd){
    background-color: #f0f0f0;
}
.column-60 ul{
padding-left:2em;
}
* {
  box-sizing: border-box;
}
.column-60 h1{
font-weight:bold;
font-size:2em;
}
/*.container {
  padding: 64px;
}*/

/* Clear floats */
.row:after {
  content: "";
  display: table;
  clear: both
}

/* 2/3 column */
.column-60 {
  float: left;
  width: 66.66666%;
  padding: 20px;
}

/* 1/3 column */
.column-40 {
  float: left;
  width: 33.33333%;
  padding: 20px;
}
.column-40 img{
  width: 100%;
border-radius:4%;
}

/* Add responsiveness - make the columns appear on top of each other instead of next to each other on small screens */
@media screen and (max-width: 1000px) {
  .column-60,
  .column-40 {
    width: 100%;
    text-align: center;
  }
}

