
/* reset selector */
* {
	margin: 0;
	padding: 0;
}

/* the styles for the html element; sets background color */
html {
	background: #202020;
}

/* style for the body; sets font-family, width, padding, background-color,
 and grid display */
body {
    font-family: Arial, Helvetica, sans-serif;
    width: 99%;
	margin: .5em auto;
    display: grid;
    grid-template: repeat(3, auto) / 100%;
    background-color: #b0b0b0;
}

/* the styles for the header */
/* sets background and padding. Also centers text */
header {
    background: linear-gradient(
    20deg, black 0%, black 20%, #666362 45%, #666362 50%,
    #666362 55%, black 80%, black 100% );
    text-align: center;
    padding: 1em 0;
}
/* adds text shadow to headings 
h1, h2, h3, h4 {
    text-shadow: 2px 2px 2px #a89e14;
}*/

/* style for the nav */
/* sets grid display and background-color. also removes bullets */
nav ul {
    display: grid;
    grid-template: 100% / repeat(4, 25%);
    list-style-type: none;
    background-color: #626566;
}
/* centers text and sets position to relitive */
nav ul li {
    text-align: center;
    position: relative;
}
/* sets display to block, adds padding on top and bottem, removes underline, and
text is bolded and set to black */
nav ul li a {
	display: block;
	padding: 1em 0;
	text-decoration: none;
	color: black;
	font-weight: bold;
}
/* hides submenu, sets position to absolute, and sets top and width to 100% */
nav ul li ul {
	display: none;
	position: absolute;
	top: 100%;
	width: 100%;
}
/* changes the look of the nav menu when hovering */
nav ul li a:hover {
    background: black;
    color: #626566;
    font-style: italic;
}
/* displays submenu when hovering */
nav ul li:hover > ul {
	display: block;
}
/* adjusts nav menu to displays current location 
li.current > a {
    color: #a89e14;
}
li.current > a:hover {
    background: black;
    color: #a89e14;
    font-style: italic;
}*/
/* adds content an the end of the nav */
nav > ul::after {
	content: "";
	display: block;
}

/* stlye for the main */
main {
    padding: .5em 1em 1em 1em;
    display: grid;
    grid-template: repeat(11, auto) / 15% 15% 70%;
}
/* h2: adds padding and sets grid area */
h2 {
    padding: 1em 0;
    grid-column: 2 / 4;
}
/* adds padding after the explanation of the content 
p#description {
    padding: 0 0 4em 0;
}*/
/* p: adds padding and sets grid area */
p {
    padding: 0 0 1em 0;
    grid-column: 2 / 4;
}
/* h3: adds padding */
h3 {
    grid-column: 2 / 4;
    padding: 4em 0 2em 0;
    margin-top: 4em;
    border-top: .25em solid black;
}
/* figure#Namless: adds padding and sets grid area */
figure#NamelessF {
    grid-column: 2 / 3;
    grid-row: 4/5;
    padding: 0 .25em 0 0;
}
/* figcaption: sets bold font and padding */
figcaption {
    font-weight: bold;
    padding: .5em 0 0 0;
    display: block;
}
/* sets grid area for the text of each boss */
article {
    grid-column: 3 / 4;
}

/* figure#Friede: adds padding and sets grid area */
figure#FriedeF {
    grid-column: 2 / 3;
}
/* makes the img element fluid */
img {
    width: 75%;
}
img.image2 {
    padding: 2em 0 0 0;
}
/* the styles for the footer */
/* sets background and padding. Also centers text */
footer {
    background: linear-gradient(
    20deg, black 0%, black 20%, #666362 45%, #666362 50%,
    #666362 55%, black 80%, black 100% );
    text-align: center;
    padding: 0;
}
/* footer h3: adds padding and removes margin */
footer h3 {
    padding: 1em 0;
    border: none;
    margin: 0;
}
