<style>
* {
  box-sizing: border-box; width:1100px; bgcolor:#fff; 
  float: center;
  margin: auto;
  
}

/* Create three unequal columns that floats next to each other */
.column1 {
  float: left;
  width: 200px;
  text-align: left;
  padding: 5px;
  left-margin:20px;
 }
 
.column2 {
 float: left;
 width:250px;
 text-align: left;
 padding: 10px;
 
}

.column3 {
  float: left;
  width: 550px;
  text-align: left;
  padding: 10px;

}


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