/* For music.php */
.namelist {
  margin-left:100px;
  column-count: 4; 
  column-width: 200px;
}
body {
  background-color: lightblue;
}
h2 {
  column-span: all;
}
/* For listen.php */
.column {
  float: left;
  width: 10%;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}