body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.4;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f9;
    color: #333;
}

.container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
    color: #2c3e50;
}

h1 {
    border-bottom: 1px solid #9FD5D1;
    padding-bottom: 5px;
    text-align: center; /* Esta línea centra el título */
}

p,
ul {
    margin-bottom: 20px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

a {
    color: #000080;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.last-updated {
    display: block;
    margin-top: 30px;
    font-size: 0.9em;
    color: #777;
}

.back-to-home {
    display: block;
    margin-bottom: 25px;
    font-weight: bold;
    text-decoration: none;
    color: #3498db;
}

.back-to-home:hover {
    text-decoration: underline;
}

.copyright-text {
    font-size: 0.8em; /* Puedes ajustar este valor para que sea más pequeño */
}

