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