﻿@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 5
   Coding Challenge 3

   Author:   Jonnie Jucht
   Date:     10.25.2024
   Filename: code5-3_print.css

*/

@page {
	size: 8.5in 11in;
	margin: 1in;
}

a {
	color: black;
	text-decoration: none;
}

a::after {
	content: " [" attr(href) "] ";
	margin-left: 20px;
	word-wrap: break-word;
}

nav {
	page-break-inside: avoid;
}

nav ol li {
	line-height: 0.3in;
}