body {
  /* background-color: #B1A591; */
  background-color: #C2B6A2;
  color: black;
  margin: 0;
  font-family: "Atkinson Hyperlegible Next", sans-serif;
  min-height: 100vh; 
  display: flex;
  flex-direction: column; 
  margin-bottom: 3em;
  font-weight: 300;
}

header {
  background-color: #9FDD97;
  color: black;
  text-align: left;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-radius: 7px 7px 0px 0px;
  border-bottom: 3px solid black;
  font-family: "Atkinson Hyperlegible Next", sans-serif;
}

header h1 {
  font-size: 3em; 
  margin: 0;
  padding-top: 0;
  font-family: "Atkinson Hyperlegible Next", sans-serif;
}

h1 {
	font-size: 2em;
	margin: 0;
	padding-top: 2em;
    font-family: "Atkinson Hyperlegible Next", sans-serif;
}

h2 {
	font-size: 1.5em;
	margin: 0;
	padding-top: 1.5em;
    font-family: "Atkinson Hyperlegible Next", sans-serif;
}

h3 {
	font-size: 1.3em;
	margin: 0;
	padding-top: 1.3em;
    font-family: "Atkinson Hyperlegible Next", sans-serif;
    font-style: italic;
}

main {
  flex-grow: 1; 
  padding: 100px 20% 20px;
  box-sizing: border-box;
  font-family: "Atkinson Hyperlegible Next", sans-serif;
}

main p {
  font-size: 1.4em;
  line-height: 1.3;
  text-indent: 1em;
  font-family: "Atkinson Hyperlegible Next", sans-serif;
}

main p.quote {
	font-size: 1.5em;
	line-height: 1em;
	text-indent: 2em;
	margin-top: 0;
	font-family: "Atkinson Hyperlegible Next", sans-serif;
	color: #555;
}

main p.disclaimer {
	font-size: 0.8em;
	line-height: 1em;
	text-indent: 0em;
	font-family: "Atkinson Hyperlegible Next", sans-serif;
	font-weight: 100;
	color: #555;
}

main hr {
	border: 1px dashed #555;
	width: 50%;
	margin-top: 1.5em;
	margin-bottom: 1.5em;
}

main li {
  font-size: 1.4em;
  line-height: 1.3;
  text-indent: 1em;
  font-family: "Atkinson Hyperlegible Next", sans-serif;
}

main li.index {
  font-size: 1.5em;
  line-height: 1.3;
  text-indent: 1em;
  font-family: "Atkinson Hyperlegible Next", sans-serif;
}

footer {
  background-color: #deebd6;
  color: black;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  border-radius: 7px 7px 0px 0px;
  border-top: 3px solid black;
  font-family: "Atkinson Hyperlegible Next", sans-serif;
}

img {
	width: 100%;
	height: auto;
	padding-top: 15px;
}

p.image_caption {
	width: 100%;
	color: black;
	background-color: #B1A591;
	font-variant: small-caps;
	text-align: center;
	padding: 3px;
	font-weight: bold;
	margin-bottom: 28px;
}

a.blog:link {
  text-decoration: none;
  color: black;
  background-color: #B1A591;
  border-radius: 5px 5px 5px 5px;
  font-variant: small-caps;
  text-decoration: underline;
}

a.blog:hover {
  text-decoration: underline;
  font-weight: bold;
  color: #222;
  background-color: #B1A591;
  border-radius: 5px 5px 5px 5px;
}

a.blog:visited {
  text-decoration: none;
  font-weight: normal;
  color: #222;
  background-color: #B1A591;
  border-radius: 5px 5px 5px 5px;
}

a.blog:active {
  text-decoration: underline;
  font-weight: bold;
  color: #222;
  background-color: #B1A591;
  border-radius: 5px 5px 5px 5px;
}

a:link {
  text-decoration: none;
  color: black;
}

a:hover {
  text-decoration: underline;
  font-weight: bold;
  color: #222;
}

a:visited {
  text-decoration: none;
  font-weight: normal;
  color: #222;
}

a:active {
  text-decoration: underline;
  font-weight: bold;
  color: #222;

}

.float-menu-right {
	background-color: #deebd6;
	color: black;
	padding: 10px;
	width: 100px;
	position: fixed;
	z-index: 100;
	bottom: 0px;
	right: 0px;
  font-family: "Atkinson Hyperlegible Next", sans-serif;
}

.float-menu-left {
	background-color: #deebd6;
	color: black;
	padding: 10px;
	width: 100px;
	position: fixed;
	z-index: 100;
	bottom: 0px;
	left: 0px;
  font-family: "Atkinson Hyperlegible Next", sans-serif;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2em; 
	padding-top: 0em;
  }

  main {
    padding: 90px 15% 20px; 
  }

  h1 {
		  padding-top: 1em;
	}

  main p {
    text-indent: 0.5em; 
  }
}

