.botones {
    display: flex; /*determina el formato*/ 
    flex-direction: row; /*organiza en línea*/
    justify-content:space-around; /*distrinuye el espacio sobrante en el eje principal*/
    align-items:center; /* alinea en el eje secundario*/
}

.button {
    margin: 0;
    background: transparent;
    padding: 0;
    border: none;
  }
  
  /* button styling */
  .button {
    --border-right: 6px;
    --text-stroke-color: #c22a44;
    --animation-color:  #c22a44;
    --fs-size: 2em;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 2vmax;
    font-family: "Arial";
    position: relative;
    text-transform: capitalize;
    color: #77215d ;
    -webkit-text-stroke: 1px var(--text-stroke-color);
  }
  /* this is the text, when you hover on button */
  .hover-text {
    position: absolute;
    box-sizing: border-box;
    content: attr(data-text);
    color: var(--animation-color);
    width: 0%;
    inset: 0;
    border-right: var(--border-right) solid #77215d;(--animation-color);
    overflow: hidden;
    transition: 0.3s;
    -webkit-text-stroke: 1px var(--animation-color);
  }
  /* hover */
  .button:hover .hover-text {
    width: 100%;
    filter: drop-shadow(0 0 23px var(--animation-color))
  }
