/*-----box sizing applied to all allows for box model "fixes" -----*/


* {
  box-sizing: border-box;
}
html {
  position: relative; /* some sticky footer properties here */
  min-height: 100%; /* some sticky footer properties here */
  -webkit-text-size-adjust: none;
}
body {
  margin: 0 0 100px; /* bottom = footer height */
  font-family: 'Noto Sans Duployan', sans-serif;
font-family: 'Poppins', sans-serif;
	color: darkgoldenrod;
	background-color: black;
	
}

a{color: goldenrod;}


header {
  color: darkgoldenrod;
	font-weight: thin;
	font-size: 1.1em;
	font-family: 'Cinzel Decorative', cursive;
font-family: 'Crimson Text', serif;
  background-color: black;
  padding: 30px;
}
/* some sticky footer properties here */
footer {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 80px;
  width: 100%;
  padding: 20px;
  background-color: darkgoldenrod;
  color: black;
  text-align: center;
	font-weight: bolder;
}
/* clears floats */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

/*-----content area of container and section. Controls columns  -----*/
.container {
 /* border: magenta solid thin;*/
	border: none;
  margin: 5px;
}
section{
    border: none;
}
article {
  margin: 20px auto;
  line-height: 1.5;
  padding: 20px;
}
article img {
  display: block;
  width: 100%;
}
p {
  margin: 0;
}
h1, h2, h3 {
  margin: 0 0 0px 0;
}



h1 {font-size: 2em;
	font-weight: bold;
	color: goldenrod;
font-family: 'Cinzel Decorative', cursive;
font-family: 'Crimson Text', serif;}
h3 {font-size: 1.35em;
	font-family: 'Cinzel Decorative', cursive;
font-family: 'Crimson Text', serif;
	color: goldenrod}

/*----- top image. the figure is controlling how large the img displays  -----*/
figure#topImage {
  width: 100%;
  margin: 10px auto;
}
figure#topImage img {
  width: 100%;
}