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