body {
    font-family: 'Georgia', serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
    background-image: none;
    color: #333;
    padding: 0 20px; /* Ajuste de padding para evitar que el contenido se salga de la pantalla en dispositivos pequeños */
}

h1 {
    font-size: 2em;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
}

h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #444;
}

p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

ul {
    margin-left: 40px;
    font-size: 1.1em;
}

li {
    margin-bottom: 10px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }

    h1 {
        margin: 0;
    }

    h2 {
        font-size: 1.3em;
    }

    p {
        font-size: 1em;
    }

    ul {
        margin-left: 30px;
    }
}
