@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 2
   Coding Challenge 1

   Author: Lokii Cameron
   Date: 9.19.2025
   
   Filename: code2-1.css

*/

/* HTML and Body Styles */


/* Heading Styles */
h1 {
	font-size: 3.5em;
	line-height: 0em;
}
h1, h2 {
	font-family: Helvetica, Arial, sans-sarif;
	letter-spacing: 0.1em;
}

/* Aside and Blockquote Styles */
Blockquote {
	color: hsl(30,85%, 45%);
	font-size: 1.5em;
}
Blockquote:first-letter {
	font-size: 1.5em;
}
/* Navigation Styles */	


/* List Styles */


/* Footer Styles */
footer {
	text-align: center;
	font-size: 2em;
	color: white;
	background-color: hsl(30, 85%, 45%);
}
	