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