@charset "utf-8";

/*
   New Perspectives on HTML and CSS, 8th Edition
   Tutorial 6
   Case Problem 2

   Columns Style Sheet
   Author: Jesse Applewhite
   Date:   11/08/2025

   Filename:   lht_columns.css

*/



/* Column Styles */

article{
    column-width: 260px;
    column-gap: 20px;
    column-rule: 1px solid rgb(154, 64, 31);

    widows: 2;
    orphans: 2;
}
article h1 {
    column-span: all;
    text-align: center;
    font-size: 3.5em;
    letter-spacing: .15em;
    margin: 0.5 0;
}