/*
	Author: Chris LaFleur
	Date: 10/2/23
	
	Trying stuff out!
*/




html{
	width: 100%;
	background-color: #C70039;
}

body{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 15px;
	margin: 0 auto;
	min-width: 640px;
	max-width:960px;
	width: 95%;
	color: black;
	background-color: #FFF5E0;
	outline: 2px dashed black;
}

body > header{
	grid-row: 1;
	grid-column: span 3;
	text-align: center;
	background-color: #141E46;
	color: ivory;
}

section#chapters{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	grid-rows: 2;
	grid-column: span 3;
	grid-template-areas: "ch1   ch2   ch3"
						 "ch4   ch5   ch6"
						 "ch7   ch8   ch9"
						 "ch10  ch11  ch12";
	outline: 2px dashed blue;
}

section#chapters h2{
	text-align: center;
	vertical-align: middle;
	background-color: #FF6969;
	grid-row: 1;
	outline: 2px dashed blue;
	margin-top: 0;
	padding: 10px 10px;
}

section.ch1{grid-area: ch1;}
section.ch2{grid-area: ch2;}
section.ch3{grid-area: ch3;}