﻿@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 2
   Coding Challenge 2

   Author: Edgar Ayala
   Date: 9/21/2025  
   
   Filename: code2-2.css

*/

	header > h1 { text-align: center;
		font-family: impact;
		font-size: 3em;
	}
	
	nav > h1 { font-size: 1.2em;
			color: white; 
			background-color: black;
			text-align: center;
	}
	
	nav > ul { list-style: none;
			line-height: 2em;
	}
	
	article > h1 { font-size: 2em;
			font-family: cursive;
	}
	
	a {color: ivory
	text-decoration: none }
	
	a:hover {  
		text-decoration: underline; 
		}