/*
   New Perspectives on HTML and CSS3, 8th Edition
    CTI-110-01H - Web, Pgm, & Db Foundation
    Build Your Own Home Page
    
    Author: Eunice Van Delden 
    Date:   04/11/2026
    Filename: reset.css
*/
 
/* Structural Styles */

article, aside, figcaption, figure, footer, header, main, nav, section
{
   display: block;
}

/* Typographic Styles */
address, article, aside, blockquote, body, cite, dive, dl, dt, dd, em, figcaption, 
figure, footer, h1, h2, h3, h4, h5, h6, header, html, img, li, main, nav, ol, p, section, span, ul
{
   background: transparent;
   font-size: 100%;
   margin: 0;
   padding: 0;
   vertical-align: baseline;
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
}

nav ul
{
   list-style: none; 
   list-style-position: none;
}

nav a 
{
   text-decoration: none;
}

body
{
   line-height: 1;
}