@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 6
   Review Assignment

   Columns Style Sheet
   Author: Jonnie Jucht
   Date:   10.31.2024

   Filename:         dlr_columns2.css

*/



/* Column Styles */

@media only screen and (min-width: 641px) {
	
	section#main p {
		column-count: 3;
		column-gap: 20px;
		column-rule: 1px solid black;
	}
	
}
