body {
  font-family: 'Garamond';
  background-color: #F5F1EB;
}

#page-container {
  display: flex;
  flex-flow: column;
  flex: 1 1 auto;
  height: calc(100vh - 16px);
  width: calc(100vw - 16px);
  max-width: calc(100vw - 16px);
  max-height: calc(100vh - 16px);
  align-items: center;
  /* border: 1px solid green; */
  /* overflow: auto; */
}

#header {
  display: flex;
  flex: 1 1 auto;
  height: 70px;
  width: calc(100vw - 32px - 8px);
  /* border: 1px solid black; */
}

#footer {
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  /* border: 1px solid black; */
  width: calc(100vw - 32px - 8px);
  height: 40px;
  text-align: center;
}

#main-panel {
  display: flex;
  /* gap: 10px 10px; */
  /* row-gap column gap */
  flex-flow: column;
  flex: 1 1 auto;
  width: calc(100vw - 32px - 8px);
  height: calc(100vh - 70px - 40px - 32px);
  max-height: calc(100vh - 70px - 40px - 32px);
  flex-wrap: wrap;
  max-width: calc(100vw - 32px);
  overflow: auto;
  /* border: 1px solid red; */
}

#logo-only-panel {
  display: flex;
  flex-flow: column;
  flex: 1 1 auto;
  height: calc(100vh - 70px - 40px);
  max-height: calc(100vh - 70px - 40px);
  /* border: 1px solid black; */
}

#logo {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  max-width: 100vw;
  max-height: calc(100vh - 70px - 40px);
  /* border: 1px solid black; */
}

#logoImage {
  max-width: calc(100% - 10px);
  max-height: 100%;
}

#side-panel {
  display: flex;
  flex-flow: column;
  flex: 1 1 auto;
  height: calc(100vh - 70px - 40px);
  max-height: calc(100vh - 70px - 40px);
  /* border: 1px solid black; */
}

#body-panel {
  display: flex;
  flex-flow: column wrap;
  flex: 1 1 auto;
  height: calc(100vh - 70px - 40px);
  max-height: calc(100vh - 70px - 40px);
  overflow: auto;
  max-width: calc(100vw - 500px - 32px - 8px);
  /* width: fit-content;
  width: 50%;
  border: 1px solid black; */
}

#body-content {
  display: flex;
  flex-flow: column nowrap;
  flex: 1 1 auto;
  margin: 16px;
  width: fit-content;
  max-width: 800px;
  /* height: calc(100% - 32px); */
  /* border: 1px solid blue; */
}

.about-us-paragraph {
  width: 800px;
  max-width: 800px;
}

@media (max-width: 900px) {
  #logo-only-panel {
    display: flex;
    flex-flow: column;
    flex: 1 1 auto;
    width: calc(100vw - 32px);
    height: calc(100vh - 70px - 40px - 32px);
    max-height: calc(100vh - 70px - 40px - 32px);
    max-width: calc(100vw - 32px);
  }

  #side-panel {
    display: flex;
    flex-flow: column wrap;
    flex: 1 1 auto;
    width: 100%;
    height: fit-content;
    max-height: 500px;
  }

  #main-panel {
    display: flex;
    /* gap: 10px 10px; */
    /* row-gap column gap */
    flex-flow: row;
    flex: 1 1 auto;
    width: calc(100vw - 32px - 8px);
    height: 100%;
    flex-wrap: wrap;
    max-width: calc(100vw - 32px - 8px);
    /* border: 1px solid red; */
  }

  #body-panel {
    display: flex;
    flex-flow: column wrap;
    flex: 1 1 auto;
    height: 100%;
    /*max-height: calc(100vh - 70px - 40px);*/
    overflow: unset;
    max-width: calc(100% - 32px);
    align-items: center;
    /* border: 1px solid black; */
  }

  #body-content {
    display: flex;
    flex-flow: column nowrap;
    flex: 1 1 auto;
    margin: 16px;
    width: fit-content;
    max-width: calc(100% - 32px - 8x);
    height: 100%;
    /* border: 1px solid blue; */
  }
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.centerLeft {
  display: flex;
  justify-content: center;
  align-items: left;
}

.topnav {
  overflow: hidden;
  background-color: #333;
  position: relative;
}

.topnav #menuItems {
  display: none;
}

.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.active {
  background-color: #6F4E37;
  color: white;
}

.dropbtn {
  background-color: #3d2314;
  /* #634a38; */
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  display: inline;
  margin-left: 8px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: black
}

.icon-container {
  display: inline-block;
  cursor: pointer;
  margin-top: 8px;
  border-radius: 3px;
}

.bar1,
.bar2,
.bar3 {
  width: 25px;
  height: 2px;
  background-color: #F5F1EB;
  margin: 5px 0;
  transition: 0.4s;
}

.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}

h3 {
  margin-block-start: 0.5em;
  margin-block-end: 0.5em;
}

.fa {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 13px;
  padding-right: 13px;
  width: 30px;
  height: 26px;
  text-align: center;
  text-decoration: none;
  margin-top: 8px;
  border-radius: 3px;
  font-size: 24px !important ;
  background: #3d2314;
  color: white;
}

.insta-link {
  display: inline;
  margin-left: 8px;
}

.insta-link:hover {
  background-color: black
}

input[type="submit"] {
  padding: 8px;
  border: 1px outset buttonborder;
  border-radius: 3px;
  color: buttontext;
  background-color: buttonface;
  text-decoration: none;
  font-size: 1.17em;
  background: #3d2314;
  color: white;
  cursor: pointer;
}

span {
  margin-top: 20px;
}