.libros-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 50px;
    width: 100%;
}

.libros-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #333;
    text-align: center;
}

.libros-info h3{
    font-size: 1.5em;
    font-weight: 700;
}

.libros-info p{
    font-size: 1.2em;
    font-weight: 500;
    width: 100%;
    max-width: 650px;
}

.libros-lista{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 1.5rem;
}

.libros-lista ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.libros-lista ul li{
    padding: 24px;
    border-radius: 30px;
background: rgba(204, 153, 153, 0.10);

/* Shadow/lg */
box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);

}

.libros-lista ul li:hover{
    transition: 1s all;
    transform: scale(1.1) ;
    opacity: 0.5;
    cursor: pointer;
}

.libros-lista ul li img{
    width: 200px;
    height: 250px;
    
    
}

@media screen and (min-width: 1165px) {
    .libros-lista{
        display: flex;
        width: 900px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin: 1.5rem;
    }
}