 

body { 
  display: flex;
}

.container {
  margin: auto;
}


.button {
  cursor: pointer;
  margin-left: 8px;  /* alto y ancho del boton*/
  margin-right: -10px; /*espacio separacion entre botones*/
  margin-top: 14px;
  margin-bottom: 19px;
  text-shadow: 0 -2px 0 #3f2702, 0 1px 1px #7d2525;
  box-sizing: border-box;
  font-size: 1em;
  font-family: Helvetica, Arial, Sans-Serif;
  text-decoration: none;
  font-weight: bold;
  color: #8fd656; 
  line-height: 28px; /*Posicion del texto en el boton*/
  padding: 2px 1px; /* alto y ancho del boton*/
  display: inline-block; 
  background: linear-gradient(to bottom, #d28212 0%, #4e381d 26%, #503a0f 100%);
  border-radius: 4px;
  border-top: 1px solid #473c18;
  border-bottom: 1px solid #3b320e;
  top: 0;
  transition: all 0.06s ease-out;
  position: relative;
}
.button:visited {
  color: #51de5f;
}

.button:hover {
  background: linear-gradient(to bottom, #2d73ad 0%, #1a1d35 26%, #6775c6 100%);
}

.button:active {
  top: 6px;
  text-shadow: 0 -2px 0 #bbbfc2, 0 1px 1px #c2dece, 0 0 4px white;
  color: rgb(116, 101, 63);
}
.button:active:before {
  top: 0;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.7), 0 3px 9px rgba(0, 0, 0, 0.2);
}

.button:before {
  display: inline-block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  top: 6px;
  border-radius: 5px;
  height: 25px;
  background: linear-gradient(to top, #2a230c 0%, #483009 6px);
  transition: all 0.078s ease-out;
  box-shadow: 0 1px 0 2px rgba(0, 0, 0, 0.3), 0 5px 2.4px rgba(0, 0, 0, 0.5), 0 10.8px 9px rgba(0, 0, 0, 0.2);
}