@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');


.bandeau {
  margin: 0 auto;
  display: block;
  text-align: center;
	position: relative;

}
#toggle {
  display: block;

  width: 28px;
  height: 20px;
  margin-left: 2%;
	z-index:-90;
}

#toggle span:after,
#toggle span:before {
  content: "";
  position: absolute;
  left: 2%;
  top: -9px;
}
#toggle span:after{
  top: 9px;
}
#toggle span {
  position: relative;
  display: block;
}

#toggle span,
#toggle span:after,
#toggle span:before {
  width: 100%;
  height: 5px;
  background-color: #E42B2E;
  transition: all 0.3s;
  backface-visibility: hidden;
  border-radius: 2px;
}

/* on activation */
#toggle.on span {
  background-color: transparent;
}
#toggle.on span:before {
  transform: rotate(45deg) translate(5px, 5px);
}
#toggle.on span:after {
  transform: rotate(-45deg) translate(7px, -8px);
}
#toggle.on + #menu {
  opacity: 1;
  visibility: visible;
}

/* menu appearance*/
#menu {
  position: relative;
margin-top: -2%;
  width: 200px;
  margin-left: 100px ; 
font-family: 'Roboto', sans-serif;
  text-align: center;
  border-radius: 4px;
	font-size: 16px;
  background: white;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
	
  /* just for this demo */
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s;
}
#menu:after {
  position: absolute;
  top: -50px;
  left: 95px;
  content: "";
  display: block;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;


 
}
ul, li, li a {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;

}
li a {
  padding: 5px;
  color: #262525;
  text-decoration: none;
  transition: all .2s;
			
}
li a:hover,
li a:focus {
  background: #1ABC9C;
  color: #fff;
}

