
body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: hsl(301, 86%, 23%);
    max-width: 400px;
    margin: 20px auto;
    text-align: center;
    background-image: url(../img/fondo.jpg);
    background-repeat: no-repeat; 
    background-size: cover;
    justify-content: center;
}
.contenedor {
    background: #e3ca9f;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.title-image {
    width: 150px;
    margin-bottom: 10px;
}
label, input, select, button {
    margin: 10px;
    padding: 8px;
    width: 90%;
    border-radius: 5px;
    font-size: 16px;
}
input, select {
    border: 1px solid #ccc;
}
button {
    background-color: hsl(301, 86%, 23%);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}
button:hover {
    background-color: hsl(301, 77%, 40%);
}
.resultado {
    font-size: 1.2em;
    margin-top: 10px;
    font-weight: bold;
    color: rgb(67, 3, 79);
}