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