* {
    font-family: "Tahoma";
    box-sizing: border-box;
}

body {
    margin-top: 5rem;
    background-color: #fdf7ee;
}

#books {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#books a {
    text-decoration: none;
}

.book {
    border: lightgray solid 1px;
    padding: .5rem;
    margin: .5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: .5rem;
    width: 350px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: white
}

.book:hover {
    transform: scale(1.05);
}

.book img {
    border-radius: .25rem;
    width: 100%;
}

.name {
    color: gray;
}

#pagination {
    padding: .5rem;
    display: flex;
    justify-content: center;
}

.pagination {
    margin-bottom: 0;
}