* {
  box-sizing: border-box;
  font-family: Junge, Georgia, serif;
  color: #5E3A20;
  font-size: 16px;
}

body {
  margin: 0;
  background-image: url("/assets/tilebg.jpg");
}


h1 {
  font-family: "Ribeye", Georgia, serif;
  font-size: 20px;
}

h2 {
  font-family: "Nunito", Arial, sans-serif;
  font-size: 18px;
}

p {
  font-family: "Junge", Georgia, serif;
  font-size: 16px;
}

a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-style: wavy;
  text-decoration-color: #7F5228;
  font-weight: bold;
}

a:hover {
  text-shadow: 0 0 3px #B54E52;
}

table.center {
  margin-left: auto;
  margin-right: auto;
  width: 550px;
}

td {
  text-align: left;
}

.header {
  flex-basis: 157px;
  width: 100%;
  height: 157px;
  background-image: url("/assets/mushheader3.png"), url("/assets/bgtile.png");
  background-repeat: no-repeat, repeat;
  background-color: #BD8E5A;
  background-size: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-top: 2px solid #5E351E;
  border-left: 2px solid #5E351E;
  border-right: 2px solid #5E351E;
  border-radius: 10px 10px 0px 0px;
}


/* Navigation bar */

.topnav {
  flex-basis: 80px;
  justify-content: center;
  height: 80px;
  width: 100%;
  margin: 0 auto;
  background: @5E351E
  font: .6em Verdana,Arial;
  color: #fff;
  background-image: url("/assets/navbg.png");
  background-repeat: repeat;
  background-color: #AB713F;
  border-left: 2px solid #5E351E;
  border-right: 2px solid #5E351E;
  padding: 5px;
}

.topnav ul {
  display: flex;
  flex-flow: row wrap;
}

.topnav li {
  list-style: none;
  padding: 10px;
}

.topnav li a {
  color: #BD8E5A;
  text-decoration: none;
  font-family: "Ribeye", serif;
  font-size: 22px;
  text-shadow: -1px 0 #3F2716, 0 1px #3F2716, 1px 0 #3F2716, 0 -1px #3F2716;

}

.topnav li a:hover {
  color:BD8E5A;
  text-shadow: 0 0 3px #B54E52;
}

.topnav li > ul {
  display: none;
  position: absolute;
  width: auto;
  padding: 4px 0;
  background: #5E351E;
}

.topnav li:hover > ul {
  display: flex;
  flex-flow: row wrap;
}



/* Style the content */
.content {
  flex-basis: 500px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("/assets/bgtile.png");
  padding: 15px;
  border-left: 2px solid #5E351E;
  border-right: 2px solid #5E351E;
}

/* Style the footer */
.footer {
  flex-basis: 257px;
  width: 100%;
  height: 257px;
  background-image: url("/assets/mushfooter2.png"), url("/assets/bgtile.png");
  background-repeat: no-repeat, repeat;
  background-position: left bottom, left top;
  background-size: contain, auto;
  border-bottom: 2px solid #5E351E;
  border-left: 2px solid #5E351E;
  border-right: 2px solid #5E351E;
  border-radius: 0px 0px 10px 10px;
}

/* This is the main site area */

.container {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}


/* FONTS */
.ribeye-regular {
  font-family: "Ribeye", serif;
  font-weight: 400;
  font-style: normal;
}

/* Weight value from 200 to 1000 */
.nunito-headings {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.junge-regular {
  font-family: "Junge", cursive;
  font-weight: 400;
  font-style: normal;
}


/* EXTRA CONTAINERS I GUESS */
.flex-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  align-items: center;
  height: 147px;
}

div.scroller {
  overflow-y: scroll;
  scrollbar-color: #5F3817 #AB713F;
}