/*
GWD Simple CSS Reset, v2.4
by Eric Girouard, 2025
Originally based on http://meyerweb.com/eric/tools/css/reset/ (version 2)

This file is a simplified version of v2.2 for use in first semester courses.

*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* Make images responsive */
img { 
  max-width: 100%;
  height: auto;
}

body {
	line-height: 1;
	font-kerning: normal; 
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* "border-box" calculates the width and height of an HTML element including the padding and the border. Opposite of the traditional CSS Box Model of "content-box" */

/* =========== TYPOGRAPHY INDEX ================ */

      h1, 
      legend {
        font-weight: bold;
        font-family: "Lobster", sans-serif;
  		font-weight: 300;
 		font-style: normal;
		padding: 5%;
	  }
	  h2,
	  legend{
		font-weight: bold;
  		font-family: "Shadows Into Light Two", cursive;
  font-weight: 400;
  font-style: normal;
	  }
	  h3,
	  legend{
  font-family: "Petit Formal Script", cursive;
  font-weight: 400;
  font-style: normal;
	  }
	  h5,
	  legend{ 
font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-style: normal;
	  }
	  p,
	  legend{
		font-family: "Walter Turncoat", cursive;
  font-weight: 400;
  font-style: normal;
	  }
	  
	   

          

      body {
          
          line-height: 1.6; /* leading */
          font-weight: normal;
          color: black;   
      }