.libros-container {
    display: flex;
    flex-direction: row;
    padding: 50px;
    padding-bottom: 20px;
    padding-top: 0px;
    margin-top: -30px;
}

.libro-image{
    width: 30%;
    min-width: 330px;
    display: flex;
    align-items: center;
    max-width: 370px;
}

.libro-description {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.libro-description-text {
    text-align: justify;
    text-justify: inter-word;
}

.buy-book {
    font-weight: bold;
    color: #bc9732;
}

.indented-text {
    padding-left: 15px;
    text-align: justify;
    font-family: inherit; 
}

@media only screen and (max-width: 800px) {

    .libros-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .libro-description {
        width: 100%;
        padding-bottom: 30px;
    }
    .libro-image{
        width: 100%;
        justify-content: center;
        min-width: 230px;
    }
}

@media only screen and (max-width: 400px) {
    .libros-container {
        padding: 20px;
        padding-bottom: 60px;
        padding-top: 60px;
    }

    .libro-image {
        margin-left: -40px;
    }
}