﻿@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 5
   Coding Challenge 3
   
   Filename: code5-3_layout.css

*/

body {
   width: 900px;
}

a {
   text-decoration: none;
}

a:hover {
   text-decoration: underline;
}
nav > ol > li {
   line-height: 1.5em;
}