.custom-button {
    background-color: #C82828;
    color: #fff;
    border-color: #333;
    padding: 10px 20px;
    font-size: 27px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center; /* Centro el texto */
    display: flex; /* Utiliza la técnica de flexbox */
    align-items: center; /* Centra verticalmente el contenido */
    justify-content: center; /* Centra horizontalmente el contenido */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Agrega  sombreado */
    cursor: pointer; /* cursor al pasar por encima */
    transition: all 0.3s ease; /* transición de 0.3 segundos con efecto ease */
    font-family: 'Roboto', sans-serif;
}

.custom-button:hover {
  color:  #000000; /* color de texto al pasar por encima */
  
}

.custom-button:active {
    background-color: #333;
    border-color: #333;
}



.custom-button-first {
    font-size: 30px;
    float: right;
    margin-right: 3px;
  background-color: #FFA500;
  
}


.custom-button:nth-child(2) {
    float: left;
    margin-left: 3px;
}






