@charset "utf-8";

/*
   New Perspectives on HTML and CSS, 8th Edition
   Tutorial 6
   Case Problem 2

   Columns Style Sheet
   Author: Lillian Walker
   Date:   11/10/2025

   Filename:   lht_columns.css

*/



/* Column Styles */
article {
  column-width: 260px;                 /* width of each column */
  column-gap: 20px;                    /*  gap between columns */
  column-rule: 1px solid rgb(154, 64, 31); /* dividing line between columns */
  orphans: 2;                          /* minimum lines at top of a page/column */
  widows: 2;                           /* minimum lines at bottom of a page/column */
}
article h1 {
  column-span: all;  /* Make the heading span across all columns */
}

