.Book {

    margin-top: 2%;
    margin-left: 1%;
    margin-right: 1%;

    flex: 0 0 auto;
    width: min-content;

    color: rgb(43, 46, 48);
}

.BookCover {

    display: inline-block;
    overflow: hidden;
}

.BookCover img {

    display: block;
    transition: transform 1s;

    width: 200px;
    height: 313px;
    object-fit: cover;
}

.BookCover:hover img {

    transform: scale(1.3);
}

.Book > .BookTitle {

    font-family: 'Tahoma', sans-serif;
    font-weight: 400;
    font-style: italic;
}

.Book > .BookAuthors {

    font-family: 'Tahoma', sans-serif;
    font-weight: 400;
    font-style: normal;
}
