body {
  background-color: #a6a287;
}
.je-container {
  background-color: #fff;
}
.je-100 {
  height: 100px;
}
.nav-link, .page-link {
  color: #4f4f4f;
}

@font-face {
 font-family: 'Yellowtail-Regular';
 src: url('../fonts/Yellowtail-Regular.ttf');
}

a:hover {
  color: #212418;
}

.je-head-box {
  display: flex;
  justify-content: flex-start;
}

.je-head, .je-head a:link, .je-head a:hover, .je-head a:visited{
  font-family: Yellowtail-Regular;
  font-size: 3em;
  text-decoration: none;
  color: #212418;
  text-shadow: 0 0 42px rgba(121, 116, 87, 1) ;
  -webkit-text-shadow: 0 0 42px rgba(121, 116, 87, 1) ;
  -moz-text-shadow: 0 0 42px rgba(121, 116, 87, 1) ;
}

.je-border {
  border-bottom: 1px solid #212418;
}

.nav-link:hover {
  text-decoration: underline;
}

.je-nav {
  margin-top: 20px;
  margin-bottom: 20px;
}

.hamburger {
  margin: 10px;
  display: block;
  position: relative;
  z-index: 1;
  user-select: none;
  appearance: none;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background-color: #212418;
  border-radius: 6px;
  z-index: 1;
  transform-origin: 0 0 ;
  transition: 0.4s;
}

.hamburger:hover span:nth-child(2) {
  transform: translateX(10px);
  background-color: #4040b3;
}

.hamburger.is-active span:nth-child(1) {
  transform: translate(0px, -2px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(15);
}

.hamburger.is-active span:nth-child(3) {
  transform: translate(-3px, 3px) rotate(-45deg);
}

.menu {
  display: none;
}

.menu.is-active {
  display: block;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
  .menu {
    display: block;
  }
}

.Footer {
  height: 100px;
  padding-top: 20px;
  border-top: solid 1px #212418;
  display: flex;
  justify-content: flex-end;
}

.Footer a:link {
  color: #000;
  text-decoration: none;
}

.Footer a:hover {
  text-decoration: underline;
  color: #000;
}

@media (max-width: 767px) {
  .Footer-Image {
    display: flex;
    justify-content: center;
  }
  .Footer {
    display: flex;
    justify-content: center;
  }
  .Header-Image {
    display: flex;
    justify-content: center;
  }
}
