/* Estilos Generales */
body {
    font-family: Arial, sans-serif;
    background-color: #f3e5f5;
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #8e24aa, #f06292);
    color: white;
    text-align: center;
    padding: 2em;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

header p {
    font-size: 1.2em;
}

.content {
    width: 80%;
    max-width: 900px;
    margin: 2em auto;
    padding: 1em;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2, h3 {
    color: #8e24aa;
}

h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 0.5em;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
}

img {
    width: 100%;
    max-width: 500px;
    margin: 1em 0;
    display: block;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 1em;
    background-color: #8e24aa;
    color: white;
    font-size: 0.9em;
    margin-top: 2em;
}
