/* 
    Moby Davenport
    8/19/2024
    Web Design
    Accompanying CSS document for HTML assignment
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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;
}
.sectionBlock {
    background-color: whitesmoke;
    padding: 0px;
    border-style: solid;
    border-color: black;
    border-width: 0.5vw;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 5%;
}
.headBar {
    background-color: whitesmoke;
    padding: 0px;
    border-style: solid;
    border-color: black;
    border-width: 0.5vw;
    margin-bottom: 0px;
}
.navBar {
    margin-top: 0px;
    background-color: whitesmoke;
    padding: 0px;
    border-style: solid;
    border-color: black;
    border-width: 0.5vw;
    border-top-width: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.NavButton {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 3vw;
    padding: 0px;
    border: solid;
    border-width: 2px;
    border-top: 0px;
    border-bottom: 0px;
    margin: none;
    background-color: rgb(226, 226, 226);
    width: 33.33333%;
    /*AAAAAAAA*/
}
header {
    text-align: center;
    font-family: sans-serif;
}
h1 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 6vw;
    text-align: center;
    padding: 2%;
    color: black;
}
h2 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 6vw;
    text-align: center;
    padding: 0.5%;
    color: black;
}
p {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 2vw;
    text-align: left;
    color: black;
}
#footer {
    background-color: orange;
    padding: 2%;
    position: fixed;
    bottom: 0%;
    width: 100%;
}
article {
    padding: 1%;
    border-top-color: black;
    border-top-width: 0.25vw;
    border-top-style: solid;
}
img {
    display: flex;
    margin: auto;
    width: 40vw;
    margin-bottom: 1vw;
    margin-top: 1vw;
    border: 0.5vw black solid;
}
body {
    background-size: 100% auto;
}