<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #0e0e0e;

}


a {
    color: whitesmoke;
    font-weight: bold;
}

ol {
    display: flex;
}

li {
    padding: 10px 20px;
}

.titulo {
    background-color: #0e0e0e;
    color: whitesmoke;
    text-align: center;
    padding: 30px;
    font-weight: bolder;
}

.calculadora {
    height: 100vh;
    background-image: url(img/money.jpg);
    display: flex;
    flex-direction: column;
    align-content: space-between;
    align-items: center;
    padding: 20px;
    color: whitesmoke;

}

.formulario {
    display: flex;
    flex-direction: row;
}

.producto {
    margin: 0 20px;
    text-align: center;
}

.producto h6 {
    position: relative;
    bottom: 30px;
}

.proceso {
    display: flex;
    flex-direction: column;
}

h2 {
    margin-bottom: 20px;
    text-align: center;
}

.proceso form input {
    width: 100%;
    height: 50px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.boton {
    background-color: #708090;
    color: whitesmoke;
    width: 200px;
    height: 80px;
    text-transform: uppercase;
    font-size: larger;
    text-align: center;
    margin: 20px auto;
    border-radius: 20px;
}

.boton:hover {
    background-color: #2a3c4d;
    font-size: 20px;
    text-shadow: 0px 6px 12px #ffb700;
    font-weight: bolder;
}



.respuesta {
    height: 50%;
    width: 70%;
    border: 3px double #ffb700;
    background-color: whitesmoke;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0e0e0e;
    border-radius: 20px;

}

.respuesta .total {
    color: #ffb700;
}

.respuesta p {
    font-size: 30px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
}


.footer {
    background-color: #0e0e0e;
    color: whitesmoke;
    text-align: center;
    padding: 5px;
}

::-webkit-scrollbar {
    background-color: #d09705;
    width: 3px;
}

::-webkit-scrollbar-thumb {
    background-color: #0e0e0e;
}

@media (max-width:700px) {
    .respuesta {
        width: 95%;
        height: 90%;
    }

    .formulario {
        display: flex;
        flex-direction: column;
        width: 70%;
        align-items: center;
    }

    .proceso {
        align-items: center;
    }
}</pre></body></html>