﻿@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 6
   Coding Challenge 3
   
   Author:  Jonnie Jucht 
   Date:    10.31.2024
   Filename: code6-3_columns.css

*/

	article {
		columns: 350px 3;
		column-rule: 5px ridge rgb(231,231,231);
		column-gap: 20px;
	}
	article h1 {
		column-span: all;
		text-align: center;
		font-size: 3.5em;
		letter-spacing: 0.15em;
	}
	article p {
		orphans: 4;
		widows: 4;
	}
	