/* From uiverse.io */
.boton1 {
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: rgba(255, 255, 255, 0.904);
    border: none;
    border-radius: 45px;
    box-shadow: 0px 15px 20px rgba(0, 3, 14, 0.308);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
  }
  
  button:hover {
    background-color: #b56fe4;
    box-shadow: 0px 15px 20px rgba(0, 3, 14, 0.308);
    
    transform: translateY(-7px);
  }
  
  button:active {
    transform: translateY(-1px);
  }

  .boton2 {
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: rgba(255, 255, 255, 0.904);
    border: none;
    border-radius: 45px;
    box-shadow: 0px 15px 20px rgba(0, 3, 14, 0.308);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
  }
  
  button:hover {
    background-color: #b56fe4;
    box-shadow: 0px 15px 20px rgba(0, 3, 14, 0.308);
    color: #fff;
    transform: translateY(-7px);
  }
  
  button:active {
    transform: translateY(-1px);
  }