@charset "utf-8";

/*
   New Perspectives on HTML and CSS, 8th Edition
   Tutorial 6
   Case Problem 2

   Columns Style Sheet
   Author: Madison Willis
   Date:   11-7-25

   Filename:   lht_columns.css

*/



/* Column Styles */


article {
  column-width: 260px;                     
  column-gap: 20px;                     
  column-rule: 1px solid rgb(154, 64, 31); 
  orphans: 2;                              
  widows: 2;                           
}

article h1 {
  column-span: all;  
}


