body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Mono', monospace;
    font-size: 10px;
    background-image: url("https://png.pngtree.com/background/20230613/original/pngtree-fantasy-world-is-shown-with-a-bridge-and-trees-picture-image_3420566.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Contenedor principal */
.general {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background: rgba(131, 131, 131, 0.6); /* Fondo semitransparente */
}

/* Sección del cuestionario */
.cuestionario {
    width: 80%;
    max-width: 600px;
    background-image: url("https://i.pinimg.com/originals/42/8e/16/428e16adffbb8f517efcc0264ad28444.png"); /* Imagen de fondo con transparencia */
    background-size: cover;
    background-position: center;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

/* Sección de la respuesta */
.respuesta {
    width: 80%;
    max-width: 600px;
    background-image: url("https://i.pinimg.com/originals/42/8e/16/428e16adffbb8f517efcc0264ad28444.png"); /* Imagen de fondo con transparencia */
    background-size: cover;
    background-position: center;
    padding: 20px;
    border-radius: 15px;
}

.respuesta p{
    width: 80%;
    max-width: 540px;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 10%;

}

/* Títulos */
h1, h2 {
    font-family: "Sevillana", cursive;
    font-weight: 400;
    font-size: 50px;
    font-style: normal;      
    text-align: center;
}

/* Estilo de los inputs y select */
input[type="text"], select {
    width: calc(100% - 20px);
    padding: 5px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Botón */
button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #919757;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #74765f;
}

/* Estilo de los párrafos */
p {
    font-size: 14px;
    line-height: 1.6;
}
