input[type="button"]{
    width: 12vw;
    height: 6vh;
    background-color: rgb(0, 102, 255);
    color: #ffffff;
    cursor: pointer;
    border: 0;
    border-radius: 5px;
    font-size: 1.5em;
    font-family: "Open Sans Condensed", sans-serif;
}

input[type="button"]:hover{
    background-color: rgb(118, 171, 251);
    color: #ffffff;
}

.linea80{
    border: none; 
    height: 1px; 
    background-color: blue; 
    width: 80%;
}

.contenedor {
    display: flex;
    align-items: center; /* Centrado vertical */
    justify-content: center; /* Centrado horizontal (opcional) */
    height: 100vh;  /*O la altura que necesites*/
}