/* From Uiverse.io by ferlagher */ 
.boton {
  position: relative;
   z-index: 1;
  font-size: 1.2em;
  padding: 0.7em 1.4em;
  background-color: rgb(176, 139, 96);
  text-decoration: none;
  border: none;
  border-radius: 0.5em;
  color: #DEDEDE;
  box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.3);
}

.boton::before {
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(33,33,33,1) 0%, rgba(33, 33, 33, 0.803) 50%, rgb(118, 93, 65) 50%, rgb(176, 139, 96) 60%);
  border-radius: 0 0 0.5em 0;
  box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.boton:hover::before {
  width: 1.6em;
  height: 1.6em;
   z-index: 0;
}

.boton:active {
  box-shadow: 0.2em 0.2em 0.3em rgba(0, 0, 0, 0.3);
  transform: translate(0.1em, 0.1em);
}