.bouton
{
  background-color: #c9392c;
  color: white;
  padding: 30px 0px;
  width: 270px;
  font-size: 25px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.0em;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  transition: background-color 0.2s ease;
  text-decoration: none;
}

#bouton-menu
{
  background-color: #1a1a2e;
  width: 100px;
  height: 100px;
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1001;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#bouton-menu svg
{
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

#bouton-adh
{
  background-color: #c9392c;
  width: 100%;
  border-radius: 10px;
}

.bouton:hover
{
    background-color: rgba(64,64,64,1) !important;
}

@media print
{
  .bouton { display: none !important; }
}