@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 3
   Tutorial Case
   
   Reset Style Sheet for the Pandaisia Chocolates Website
   Author: Abdul Majid Niazai
   Date:   03/01/2026
   
   Filename: pc_reset.css

*/

/* Structural Styles */
article, aside, figcaption, figure, footer, header, main, nav, section {
   display: block;
}

/* Typographic Styles */
address, article, aside, blockquote, details,
 figcaption, figure, footer, header, main, 
 menu, nav, section, div, dl, dt, dd, em,
  figcaption,figure,footer, h1,h2,h3,h4,h5,h6,
   header, main, menu, nav, section, span, strong
   p, ul, ol, li {
   font-size: 100%;
   margin: 0%;
   padding: 0%;
   vertical-align: baseline;
   box-sizing: border-box;
}
nav ul {
   list-style: none;
   list-style-image: none;
}
nav a {
   text-decoration: none;
}  
body {
   line-height: 1;
}

