/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 3
   Review Assignment
   
   Style Sheet for the Pandaisia Chocolates Monthly Specials
   Author: Andrew Hainline
   Date:   10/1/25
   
   Filename: pc_specials.css

*/

/* Page Body Styles */

Body {
	width: 95%;
	min-width:640px;
	max-width:960px;
	margin-left: auto;
	margin-right: auto;
}


/* Image Styles */

img {
	display: block;
	width: 100%;
}


/* Horizontal Navigation Styles */

nav.horizontal li {
	display: block;
	float: left;
	width: 16.66%;
}

nav.horizontal a {
	display: block;
}


/* Grid Styles */

body {
	display: grid;
	grid-template-columns: 2fr 1fr;
	column-gap: 20px;
}

header, footer {
  grid-column: 1 / -1;
}

#sub {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

/* Specials Styles */

div.specials {
	min-height:400px;
	outline: 1px dashed rgb(71,52,29);
}

/* Award Styles */

aside {
	position: relative;
	height: 650px;
	overflow: auto;
}

aside > div {
	position: absolute;
	width: 30%;
}

#award1 { top:  80px; left:  5%; }
#award2 { top: 280px; left: 60%; }
#award3 { top: 400px; left: 20%; }
#award4 { top: 630px; left: 45%; }
#award5 { top: 750px; left:  5%; }
