/* estilos.css */

/* Estilo general de la página */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #252e31;
    margin: 0;
    padding: 20px;
    color: #333;
    background-image: url(descargabrr.jfif);
}

/* Contenedor principal */
.contenedor {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

/* Título principal */
h1 {
    text-align: center;
    color: #0d6efd;
    margin-bottom: 30px;
}

/* Cada bloque de pregunta */
.pregunta {
    background-color: #eef4ff;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 6px solid #0d6efd;
    border-radius: 8px;
}

.pregunta h2 {
    font-size: 18px;
    color: #222;
}

/* Respuesta */
.respuesta {
    margin-top: 10px;
    padding: 10px;
    background-color: #d1e7dd;
    border-radius: 5px;
    color: #0f5132;
    font-weight: bold;
}

/* Pie de página */
footer {
    text-align: center;
    margin-top: 30px;
    color: gray;
    font-size: 14px;
}

/* Efecto de hover para las preguntas */
.pregunta:hover {
    background-color: #dde9ff;
    transition: 0.3s;
}

/* Enlaces si los hubiera */
a {
    color: #0d6efd;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

    
        body{
            font-family: Arial, Helvetica, sans-serif;
            background-color: #1a1d22;
            margin: 10px;
            border: 40px;
            border-color: white;
            padding: 30px;
            
            color: whitesmoke;
        }

        .contenedor{
            max-width: 1300px;
            margin: auto;
            border: 32px;
            border-color: #ffffff;
            background: black;
            repeat: no-repeat;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
        }

        h1{
            text-align: center;
            color: #ffffff;
            margin-bottom: 30px;

        }

        .pregunta{
            background-color: rgba(145, 21, 114, 0.411);
            padding: 15px;
            margin-bottom: 20px;
            border-left: 6px solid white;
            border-radius: 8px;
        }

        .pregunta h2{
            font-size: 18px;
            color: #ffffff;
        }

        .respuesta{
            margin-top: 10px;
            padding: 10px;
            background-color:  rgba(145, 21, 114, 0.411);
            border-radius: 5px;
            color:violet;
            font-weight: bold;
        }

        footer{
            text-align: center;
            margin-top: 30px;
            color:#001aff;
            font-size: 14px;
        }