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