

.relative {
  position: relative;
  width: 600px;
  height: 400px;
  
  font-size: 28px;
  font-weight: bold;
  font-family: Courier, san-serif;
  
}
.absolute {
  position: absolute;
  top: 33px;
  right: 0;
  width: 333px;
  height: 333px;
  
  font-size: 13px;
  font-family: Courier, Tahoma, Verdana, sans-serif;
  
  padding: 1em;
  -moz-column-count: 3;
  -moz-column-gap: 1em;
  -webkit-column-count: 3;
  -webkit-column-gap: 1em;
  column-count: 3;
  column-gap: 1em;
  
}

