﻿@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 5
   Coding Challenge 3

   Author: Aaron Spence  
   Date: 10/18/2025    
   Filename: code5-3_print.css

*/
/* Page Box Styles */
@page {
	size: 8.5in 11in;
	margin: 1in;
}

/* Hypertext Styles */

a {
	text-decoration: none;
}

/* Page Break Styles */

nav ol {
	page-break-inside: avoid;
}

/* Main structure styles */

Nav > ol > li {
	line-height: 0.3in 
}

/* Hypertext Styles */

a::after {
	content: " [" attr(href) "] ";
	margin-left: 20px;
	word-wrap: break-word;
}