body {
  background-color: #bcb6a8;
  background-position: top;
  font-size: 18px;
  font-family: Helvetica;
  margin: 0;
}

@font-face {
    font-family: '-';
    src: url("font/.otf");
}

p {
  line-height: 1.6em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
}

blockquote {
    line-height: 1.3em; 
}

img {
  max-width: 100%;
  height: auto;
}
.right {
  float: right;
  margin-left: 1em;
}
.left {
  float: left;
  margin-right: 1em;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .small {
    max-width: 40%;
    height: auto;
  }
}
.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
}

a {
	color: black;
	background-color: ;
}

a:hover { 
  background-color: #d67572;
  color: white;
  text-decoration: none;
}

/* External links */

a[href*="//"]:after { 
  font-weight: 300;
  font-size: .85em;
  content: "\2197"; /* top right arrow: Ã¢â€ â€” */
  color: var(--textcolor);
  opacity: .25;
}

a[href*="//"]:hover:after {
  color: var(--highlight);
  opacity: 1;
}

h1, h2, h3, h5 {
  font-family: Tahoma, Geneva, sans-serif;
  color: black;
}

h4 {
  font-family: Tahoma, Geneva, sans-serif;
  color: #d67572;
  text-decoration: none;
}

/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
  margin: auto;
  width: 90%;
	max-width: 900px;
	background-color: #fbfbfb;
  color: #151515; 
 border: solid black 2px;
}

#content {
  padding: 0px 20% 20px 5%;
}

/*HEADER STYLE*/
#header {
  background-color: #fcbc29;
  padding: 0 5%;
  border: solid black 1px;
  text-align: right;
}
#header ul {
  list-style-type: none;
  padding: 0.5em 0;
  margin: 0;
}
#header li {
  font-size: 1.2em;
  display: inline-block;
  margin-right: 1.5em;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
}
#header li a {
  color: black;
  text-decoration: none;
  letter-spacing: 0.5em;
  background-color: white;
  border: solid black 1px;
}
#header li a:hover {
  text-decoration: none;
  color: #af362e;
}