@charset "utf-8";

@font-face {
	font-family: Champagne;
	src: url('cac_champagne.woff') format('woff')
}
@font-face {
	font-family: Champagne;
	src: url('cac_champagne.ttf') format('truetype')
}
@font-face{	   
	font-family: Grunge;
	src: url('1942.woff') format('woff')
}
@font-face {
	font-family: Grunge;
	src: url('1942.tff') format('truetype')
}
@font-face{	
	font-family: Dobkin;
	src: url('DobkinPlain.woff') format('woff')
}
@font-face {
	font-family: Dobkin;
	src: url('DobkinPlain.ttf') format('truetype')
}
/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 2
   Case Problem 1
   
   PHCT Typographic Style Sheet
   Author: Io Anderson
   Date:   9/27/25
   
   Filename: ph_styles.css

*/


/* Structural Styles */
html {
	background-color : hsl(91, 8%, 56%);
}

header {
	background-color: rgb(0,0,0);
}

body {
	font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;background-color: hsl(58, 31%, 84%);
}

p {
	margin: 0px;
	padding: 5px 25px 25px 25px;
}

body > p {
	font-size: 1.1em;
	text-align: center;
}

address {
	font-style: normal;
	font-size: 0.9em;
	text-align: center;
	padding: 10px 0px 10px 0px;
}

/* Navigation Styles */
nav a {
	font-family: ‘Trebuchet MS’, Helvetica, sans-serif;
	padding: 10px 0px 10px 0px;
}
nav > ul > li > a:link, nav > ul > li > a:visited {
	background-color: hsla(0, 0%, 42%, 0.4);
	color: rgb(255,255,255);
	text-decoration: none;	
}

nav > ul > li > a:active, nav > ul > li > a:hover {
	color: hsla(0, 0%, 100%, 0.7);
	background-color: hsl(0, 0%, 42%, 0.7);
}

/* Section Styles */
section.playbill h1 {
	font-size: 3em;
	font-weight: normal;
	margin: 0px;
	padding: 20px 0px 10px 20px;
}

#play1 > h1 {
	font-family: Champagne, cursive;
}
#play1{
	background-color: hsl(240, 100%, 88%);
}

#play2 > h1{
	font-family: Grunge, ‘Times New Roman’, Times, serif;
}
#play2 {
	background-color: hsl(25, 88%, 73%);	
}

#play3 > h1{
	font-family: Impact, Charcoal, sans-serif;
}
#play3 {
	background-color: hsl(0, 100%, 75%);
}

#play4 > h1{
	font-family: Dobkin, cursive;
}
#play4 {
	background-color: hsl(296, 86%, 86%);
}

/* Description List Styles */
dt {
	font-size: 1.3em;
	font-weight: bold;
	color: hsla(0, 0%, 0%, 0.4);
}

dd {
	font-size: 1.3em;
	margin-left: 0px;
	margin-bottom: 10px;
}