@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 6
   Tutorial Case

   Columns Style Sheet
   Author: Mohammad Z Taieeb
   Date:   04/04/2026

   Filename:         dlr_columns.css
*/


/* Column Styles */

section#main {
   column-count: 2;
   column-gap: 25px;
   column-rule: 1px solid rgb(153,0,153);
}

/* These elements should NOT break into columns */

section#main img,
section#main h2,
section#main p,
section#main table,
section#main p#timeStamp {
   column-span: all;
}