@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 850px;
  background: #0caabf;
}
section {
  width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.book {
  margin: 10px;
  position: relative;
  width: 300px;
  height: 400px;
  background: #000000;
  box-shadow: 0 30px 30px rgba(0, 0, 0, 0.5);
}
.book .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.book .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.book:hover .image {
  opacity: 0;
}
.book .text {
  position: absolute;
  padding: 15px;
  bottom: 10px;
  left: 10%;
  width: 80%;
  height: 60px;
  overflow: hidden;
  box-sizing: border-box;
  background: rgba(214, 214, 203, 0.3);
  transition: 0.5s;
}
.book:hover .text {
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: rgba(214, 214, 203, 1);
  box-shadow: 0 30px 50px rgba(255, 255, 255, 0.5);
}
.book .text h2 {
  margin: 0 5px 10px 17px;
  padding: 0;
  font-size: 12px;
}
.book:hover .text h2 {
  display: none;
}
.book .text p {
  margin: 0;
  padding: 0;
  opacity: 0;
  line-height: 1.2em;
  text-align: justify;
  transition: 0.5s;
}
.book:hover .text p {
  opacity: 1;
  transition-delay: 0.3s;
}
