@charset "utf-8";

/*
	New Perspectives on HTML5 and CSS3, 8th Edition
	Chapter 6
	Review Assignment

	Columns Style Sheet

	Author: Chris LaFleur
	Date: 10/30/23
*/



/* Column Styles */

@media only screen and (min-width: 641px){
	p{
		column-count: 3;
		column-gap: 20px;
		column-rule: 1px solid black;
	}
}