* { 
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
}

 

.descripcion {
    text-align: center;
    padding: 5px 5px;
    color: rgb(154, 235, 188);
}

.book {
    width: 100%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}
.book img{
    width: 190px;
}
.book__perfil {
    width: 240px;
    /*ancho de la caja*/
    padding: 10px;
    box-shadow: 1px 1px 5px rgb(189, 104, 132);
    border: solid rgba(220, 235, 54, 0) 2px;
    border-radius: 10px;
}
.book__perfil:hover {
    border: solid rgb(153, 159, 223) 2px;
}

.book__perfil:hover img {
    transform: rotate(0);
}
.book__perfil1 {
    width: 430px;
    /*ancho de la caja*/
    padding: 10px;
    box-shadow: 1px 1px 5px rgb(189, 104, 132);
    border: solid rgba(220, 235, 54, 0) 2px;
    border-radius: 10px; 
    display: flex;
    flex-direction: row;
}
.book__perfil1:hover {
    border: solid rgb(153, 159, 223) 2px;
}

.book__perfil1:hover img {
    transform: rotate(0);
}
.book__perfil1 img{ /* Tamaño de los libros juntos*/
    width: 220px;
    margin: 15px 4px 12px 12px;
}
 

.book__perfil1 {
    width: 500px;  /*ancho de la caja*/ 

}

.exib-1 img {   /*imagen exibicion final de obras*/
    width: 345px;
    margin: 15px 4px 12px 12px;
}





img {
    width: 100px;
    transform: rotate(-360deg);
    transition: all .3s;
}

.book__nombre {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.book__descripcion {
    color: rgb(210, 213, 57);
    text-align: center;
}
/* hr {
     Color de la barra separadora
     width: 100%;
     height: 4px;
     background: orange;
     margin: 20px 5px;
 }*/
.book__button {
    text-align: center;
}

.enlace {
    /*Boton saber mas sobre el libro*/
    background: rgb(242, 139, 36);
    padding: 8px 20px;
    color: rgb(46, 29, 122);
    text-decoration: none;
}
/*RESPONSIVE*/

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

.book__perfil1 {
    display: flex;
    flex-direction: column;
}}