/* Create three equal columns that float next to each other */
.column {
  float: left;
  width: 250px;
  border: 2px solid rgb(170, 170, 170);
  border-radius: 5px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0px;
  height: 300px;
}
.column1 {
    float: left;
    width: 250px;
    border: 2px solid rgb(170, 170, 170);
    border-radius: 5px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0px;
    height: 65px;
  }


/* 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 on smaller screens (600px wide or less) */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}