@media (max-width: 1000px) {
    .logo {

        filter: invert(1);
    }
}

.logo {

    filter: invert(1);
}

.post-thumb {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.post-thumb h1 {
    position: absolute;
    z-index: 1;
    text-align: center;
    margin: 0;
    color: white;
    /* Puedes ajustar el color del texto según tus necesidades */
}

.post-thumb img {
    width: 100%;
    /* Ajusta el ancho de la imagen según tus necesidades */
    height: auto;
    /* Esto mantendrá la proporción de la imagen */
}

.post-thumb img {
    max-height: 300px;
    /* Ajusta este valor según tus necesidades */
    width: auto;
}

.book-main-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.book-cover {
    max-width: 80%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.book-details {
    /* max-width: 45%; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.book-info {
    text-align: left;
    margin-bottom: 20px;
}

.book-info h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.book-info p {
    font-size: 16px;
    margin: 0;
}

.book-description {
    width: 100%;
    margin-bottom: 20px;
    margin: 20px;
}

.book-description h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.book-description p {
    text-align: justify;
}

.book-index {
    width: 100%;
}

.book-index h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.book-index ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.book-index li {
    font-size: 16px;
    margin-bottom: 5px;
}

.book-main-page {
    flex-direction: row;
}


.book-description {
    display: flex;
    flex-direction: column;
}


.book-index ul {
    list-style-type: decimal;
}

.obtener-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 20px;
    cursor: pointer;
}

.obtener-btn:hover {
    background-color: #333;
}

.obtener-btn:disabled {
    background-color: rgb(204, 204, 204);
}