body {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

main {
    padding: 20px;
}

h2 {
    color: #333;
}

/* En el CSS */
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links span {
    color: #fff;
    margin: 0 10px;
}

/* Estilo para centrar el PDF */
.pdf-container {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh; /* Altura del contenedor */
    margin: auto;
    margin-bottom: 100px;
    overflow: hidden; /* Evita que el PDF sobresalga del contenedor */
}

.pdf-container embed {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta el contenido para que quepa dentro del contenedor sin distorsión */
}
