.card {
    color: #ffffff;
    border-radius: 50px;
    border: 5px solid rgb(105, 57, 22);
    padding: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
    
.titulo-card {
    font-family: 'Crimson Pro';
    text-align: center;
}
    
.card-centre {
    background-image: url(../assets/img/imagen-libros1.jpg);
    background-size: cover;
    margin-top: 4.9%;
    margin-bottom: 4.9%;
    max-height: 87.5%;    
}
    
.rectangular-card-uno {
    background-image: url(../assets/img/imagen-libros2.png);
    background-size: cover;
    margin-top: 10%;
    margin-bottom: 10%;
}
    
.rectangular-card-dos {
    background-image: url(../assets/img/imagen-libros3.png);
    background-size: cover;
    margin-top: 10%;
    margin-bottom: 10%;
}
    
.custom-container {
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
    
.rounded-image {
    border-radius: 50%;
    max-width: 76%;
    width: 76%;
    height: auto;
    border: 8px solid #7e5234;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
    
.busqueda {
    width: 90%;
    font-family: 'Crimson Pro';
    background: #D9D9D9;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    border: none;
    outline: none;
    transition: background-color 0.3s;
    margin-top: 8%;
    margin-bottom: 5%;
}
    
.input-field:focus {
    background: #9eb7d3;
}
    
.boton-buscar,
.boton-salir {
    font-family: 'Crimson Pro';
    background-color: #c98670;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 8%;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 1.2%;
}
    
.boton-buscar:hover,
.boton-salir:hover {
    background-color: #965e4b;
    color: #FFF;
}
    
.libros-recomendados {
    max-width: 50%;
    margin-top: 15px;
    margin-bottom: 5px;
    height: 160px;
    width: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
    
.consultar-button {
    width: 50%;
    margin-top: 10px;
    background-color: #cc6f32;
}