@charset "utf-8";
@font-face {
    font-family: 'Palatino Linotype', 'Book Antiqua', 'Palatino', 'serif';
    src: url('cac_champagne.woff') format('woff'),
         url('cac_champagne.ttf') format('truetype');
         
}

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 2
   Case Problem 1
   
   PHCT Typographic Style Sheet
   Author: Andrew Marks
   Date:   9/18/2025
   
   Filename: ph_styles.css

*/


/* Structural Styles */
html {
    background-color: hsl(91, 8%, 56%);
}

body {
    background-color: hsl(58, 31%, 84%);
    font-family: 'Palatino Linotype', 'Book Antiqua', 'Palatino', 'serif';
}

body > p {
    margin: 0 px;
    padding-top: 5px;
    padding-right: 25px;
    padding-bottom: 25 px;
    padding-left: 25 px;
}

body > p {
    font-size: 1.1em;
    text-align: center;
}

body > footer address {
    font-style: normal;
    font-size: 0.9em;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

header {
    background-color: black;
}



/* Navigation Styles */
nav > ul > li.newgroup {
    font-family: 'Trebuchet MS', 'Helvetica', 'sans-serif';
    margin-top: 10 px;
    margin-bottom: 10 px;
}

nav > ul > li > a:link, nav > ul > li > a:visited {
    background-color: hsla(0, 0%, 42%, 0.4);
    text-decoration: none;
}

nav > ul > li > a:hover, nav > ul > li > a:active{
    color:hsla(0, 0%, 100%, 0.7);
    background-color: hsl(0, 0%, 42%, 0.7);

}



/* Section Styles */
 section.playbill1, section.playbill2, section.playbill3, section.playbill4 {
    font-size: 3em;
    font-weight: normal;
    margin: 0;
    padding-top: 20 px;
    padding-bottom: 10 px;
    padding-left: 20px;
}

section.playbill1 {
    background-color: hsl(240, 100%, 88%);
    font-family: 'Champagne', 'cursive';
}

section.playbill2 {
    background-color: hsl(25, 88%, 73%);
    font-family: 'Grunge', 'Times New Roman', 'Times', 'serif';
}

section.playbill3  {
    background-color: hsl(0, 100%, 75%);
    font-family: 'Impact', 'Charcoal', 'sans-serif';
}

section.playbill4  {
    background-color: hsl(296, 86%, 86%);
    font-family: 'Dobkin', 'cursive';
}
/* 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;
}

