@charset "utf-8";

/*
   Jerry Ray Walz Jr.
   11/2/2022
   Final Project: 233DA
   Reset Style Sheet
   reset.css
*/


/* Basic styles to be used with all devices and under all conditions */
article, aside, figcaption, figure, 
main, nav, section { 
   display: block;
}

address, article, aside, blockquote, body, cite, 
div, dl, dt, dd, em, figcaption, figure, footer, 
h1, h2, h3, h4, h5, h6, header, html, img, 
li, main, nav, nav a, ol, p, section, span, ul,
table, tr, td, th, col, colgroup {
   margin: 0;
   padding: 0;
   border: 0;
   font-size: 100%;
   background: transparent;
   box-sizing: border-box;  
}

/* Set the default page element styles */
body {
   line-height: 1.2em;
}

ul, ol {
   list-style: none;
}

nav ul {
   list-style: none;
   list-style-image: none;
}

nav a {
   text-decoration: none;
}

