@charset "utf-8";

/*
   New Perspectives on HTML and CSS, 8th Edition
   Tutorial 6
   Case Problem 2

   Columns Style Sheet
   Author: Drew Owens
   Date:   11-10-2025

   Filename:   lht_columns.css

*/



/* Column Styles */
article {
  column-width: 260px;                     /* (a) column width */
  column-gap: 20px;                        /* (b) gap between columns */
  column-rule: 1px solid rgb(154, 64, 31); /* (c) dividing line between columns */
  widows: 2;                               /* (d) minimum widow lines */
  orphans: 2;                              /* (d) minimum orphan lines */
}

article h1 {
  column-span: all;
}