body {
    background-color: rgb(223, 190, 171);
}
h1, h2, h3, h5 {
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: rgb(169, 59, 46)
}
h1 {
  font-size: 8em;
  text-align: center;
  color: rgb(169, 59, 46);
}
h2 {
  font-size:2.5em;
  line-height: 1em;
  color: rgb(169, 59, 46);
}
h3 {
  font-size: 2em;
  line-height: 1em;
  text-align: center;
  color: rgb(169, 59, 46);
}
h4, p {
  font-family: "Oxanium", sans-serif;
  font-weight: 500;
  font-style: normal;
}
h4 {
  font-size: 1.25em;
  line-height: 1em;
  color: rgb(169, 59, 46);
}
h5 {
  font-size: 1em;
  margin-top: 14;
  line-height: 1em;
  color: rgb(169, 59, 46);
}
li, h6 {
  font-family: "Oxanium", sans-serif;
  font-weight: 400;
  font-style: normal;
}
h6 {
  font-weight: 600;
  font-size: 0.9em;
}
p {
  font-size: 1.2em;
  line-height: 1.1em;
  font-kerning: auto;
}
figcaption {
  font-family: "Oxanium", sans-serif;
  font-weight: 300;
  font-style: normal;
}
a href {
  font-family: "Oxanium", sans-serif;
  font-weight: 300;
  font-style: normal;  
}

/*///// CLASSES /////*/
.border {
  border: 3px solid black;
  margin: 0 8px;
}
.center {
  text-align: center;
  font-size: 1.5em;
}
.rule-top  {
  border-top: 1px solid rgb(227, 226, 225);
  margin-top: 10px;
  padding-top: 10px;
}
.rule-top-sp {
  border-top: 1px solid rgb(227, 226, 225);
  margin-top: 10px;
  padding-top: 20px;
}
.imgfloat {
  float: right;
  margin-left: 12px;
}
.imgsizm {
  width: 180px;
  margin-top: 50px;
}
.imgsizs {
  width:78px;
  margin-top: 30px;
}
/*///// NAV STYLES /////*/
nav {
    margin-bottom: 20px;  
}
nav ul {
    list-style-type: none; /* remove bullets */
    margin: 0;
    padding: 14px;
    text-align: center;
    
}
nav li {
    display: inline; /* change li from block level element to inline */
    font-weight: 600;
    font-style: normal;
       
}
nav a:link, nav a:visited {
    color: black;
    text-decoration: none; /*remove default underlines from links*/
    padding: 2px 6px;
    margin: 0 3px;
    font-size: 0.75em;
    font-weight: 600;
}
nav a:hover {	
    text-decoration: underline;
    color: black;
}