/*-----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: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif"; 
	color:#FAD3F0

}
header {
  color:#3E106A;
  background-color:#6B93F0;
  padding: 30px;
font-style: bold;
}
/* some sticky footer properties here */
footer {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 80px;
  width: 100%;
  padding: 20px;
  background-color: #6B93F0;
  color: #3E106A;
  text-align: center;
	font-style: bold;
}
/* clears floats */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

/*-----content area of container and section. Controls columns  -----*/
.containrer{
	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 5px 0;
}
/*----- top image. the figure is controlling how large the img displays  -----*/
figure#topImage {
  width: 100%;
  margin: 10px auto;
}
figure#topImage img {
  width: 100%;

} /* unvisited link */
a:link {
	color:#B87FF4;
}
/* visited link */
a:visited {
	color:#FAD3F0;
}
/* mouse over link */
a:hover {
	color:#0A62F1;
}
/* selected link */
a:active {
	color:#76B4F2;
}
