﻿@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 2
   Coding Challenge 2

   Author:Andrew Poe 
   Date:9/17/2025   
   
   Filename: code2-2.css

*/

/* Header Styles */

header > h1 {
	text-align: center;
	font-family: Impact, sans-serif;
	font-size: 3em;
	
}

/* Navigation Styles */

nav > h1 {
	font-size: 1.2em;
	color: white;
	background-color: black;
	text-align: center;
}

nav > ul {
	list-style-type: none;
	line-height: 2em;
}

nav > ul > li > a:link {
	color: ivory;
	text-decoration: none;
}

nav > ul > li > a:hover, nav > ul > li > a:active {
	text-decoration: underline;
}

/* Article Styles */

article > h1 {
	font-size: 2em;
	font-family: cursive;
}