.container {
    width: 50%;
    padding-top: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.header {
    margin: 0 auto 20px auto;
}

h1 {
    font-family: 'dogica';
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    margin-top: 20px;
    border-bottom: 1px solid #999;
    padding-bottom: 10px;

    text-align: left;

}

img {
    width: 100%;
    height: auto;
    max-width: 700px;
    max-height: 400px;
    border-radius: 10px;

}

li {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.container ul {
    padding: 0;
    margin: 0;
}

.container ul li {
    margin-bottom: 20px;
}

body {
    background-color: #f0f0f0;
}

h2 {
    font-family: 'dogica';
    font-size: 17px;
    color: #333;
    margin-top: 20px;
}

p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
}

a {
    text-decoration: none;
    color: #333;
}

a:visited {
    color: #333;
}

.hidden {
    display: none;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination button {
    margin: 5px 5px;
    padding: 10px 15px;
    cursor: pointer;
}

.separator {
    width: 60%;
    height: auto;
    margin-top: 10px;
    border-radius: 10px;
    padding-bottom: 10px;
}


.left-column {
    /* width: 20%; */
    position: fixed;
    top: 5%;
    /* Ajusta el valor según el espacio que desees dejar arriba */
    overflow-y: auto;
    /* Añade scroll si el contenido excede el tamaño */
    text-align: left;
}

.left-column h2 {

    font-family: 'dogica';
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.left-column .archives {
    list-style-type: none;
    padding: 0;
}

.left-column .archives li {
    margin-bottom: 10px;
    align-items: left;
    text-align: left;
}

.left-column details {
    margin-bottom: 5px;
}

.left-column summary {
    cursor: pointer;
    font-weight: bold;
}

.left-column ul {
    list-style-type: none;
    padding-left: 20px;
}

.left-column a {
    font-family: 'Times New Roman', Times, serif;
    text-decoration: none;
    color: #333;
}

.left-column a:hover {
    text-decoration: underline;
}

.redes {
    border-top: 1px solid #333; /* Cambia el color y el grosor del borde según sea necesario */
    padding-top:1px;
}

/* Media query para dispositivos móviles */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .left-column {
        position: absolute;
        right: 20px;
        /* Ajusta el valor según el espacio que desees dejar a la derecha */
        top: 1px;
        border-radius: 10px;
    }

    .archives {
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
        background-color: #f0f0f0;
    }

    .archive-toggle {
        cursor: pointer;
    }


    .header {
        margin-top: 10px;
    }

    h1 {
        font-size: 20px;
    }

    .pagination {
        margin-top: 10px;
    }
}