  
.library-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 80vh; }
  
.book-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 10px;
    max-width: 100%;
    max-height: 70vh; 
    overflow-y: auto; }
  
.book {
  width: 120px;
  text-align: center; }
  
.book img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 5px;}
  
.book-title {
  font-size: 14px;
  font-weight: 100;
  font-style: oblique;
  margin-top: 5px;
  color: #d11305;
  text-decoration: underline dotted;}
  
.book-author {
  font-size: 12px;
  color: #e5826b;
  text-decoration: underline dotted;}