/* Create three equal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
}

.left {
    width: 40%;
}

.middle {
    width: 35%
}

.right {
    width: 25%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}

ul {
  list-style-type: disc;
}







