
/* MENU */
.jambonbeurre {
  background:black;
  position: fixed;
  top: 10px;
  right: 6px;
  height: 35px;
  width: 35px;
  cursor: pointer;
  z-index: 999;
  -webkit-transition: opacity .25s ease;
  transition: opacity .25s ease;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
}

.jambonbeurre:hover {
  opacity: .7;
}

.jambonbeurre.active .top {
  -webkit-transform: translateY(-3px) translateX(0) rotate(45deg);
  transform: translateY(-3px) translateX(0) rotate(45deg);
  background: #FFF;
  left: 4px;
  width: 32px;
}

.jambonbeurre.active .middle {
  opacity: 0;
  background: #FFF;
}

.jambonbeurre.active .bottom {
  -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #FFF;
  left: 4px;
  width: 32px;
}

.jambonbeurre.active  {
  right: 45px;
  height: 31px;
  width: 30px;
}

.jambonbeurre span {
  background: #fff;
  border: none;
  height: 2px;
  width: 21px;
  position: absolute;
  left: 7px;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  cursor: pointer;
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  border-radius: 45px;
}

.jambonbeurre span:nth-of-type(1) {
  top: 12px;
}

.jambonbeurre span:nth-of-type(2) {
  top: 20px;
}





.overlay {
  display: none;
  position: fixed;
  z-index:99;
  background: #000;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
  display: inline;
  height: 100%;
}

.overflowswitch {
  overflow:hidden;
}

.overlay.open nav {
  text-align: center;
}

.overlay.open ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  padding: 10px;
}

.overlay.open ul li {
  
  color: #FFF;

}

.overlay.open ul li a {
  font-family: 'Coustard', serif;
  display: block;
  position: relative;
  color: #FFF;
  text-decoration: none;
  font-size:20px;
}

.overlay ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 3px;
  background: #FFF;
  -webkit-transition: .35s;
  transition: .35s;
 
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
#img {
  margin-left:150px;
}
@media screen and (max-width: 640px) {
   #img {
      margin-left:30px;
    }
    .overlay.open ul li a {
      font-size:12px;
    }
}
@media screen and (max-width: 340px) {
#img {
  margin-left: 0px;
}

.overlay.open ul li a {
  font-size:12px;
}

}