@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');

.book-store-bg-container {
    background-color: #1b1b1b;
    padding: 20px;
    min-height: 100vh;
}

.popular-book-heading {
    color: white;
    font-family: "Bree Serif";
    font-size: 30px;
    font-weight: 500;
}

.popular-book-image {
    height: 200px;
    width: 150px;
    background-size: cover;
}

.popular-book-card {
    background-color: #e6f6ff;
    border-radius: 10px;
}

.popular-book-name {
    color: #183b56;
    font-family: "Bree Serif";
    font-size: 18px;
    font-weight: 500;
}

.popular-book-name-descriptive {
    color: #06070d;
    font-family: "Bree Serif";
    font-size: 12px;
    font-weight: 500;
}

.popular-book-author-name {
    color: #9aa5b1;
    font-family: "Bree Serif";
    font-size: 10px;
    font-weight: 500;
}

.padding {
    padding: 15px;
}

.recommended-books-heading {
    color: white;
    font-family: "Bree Serif";
    font-size: 22px;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 5px;
}

.recommended-books-image {
    height: 130px;
    width: 80px;
    background-size: cover;
    margin-bottom: 10px;
}

.recommended-books-name {
    color: #e4e7eb;
    font-family: "Bree Serif";
    font-size: 15px;
    font-weight: 500;
}

.recommended-books-author-name {
    color: #9aa5b1;
    font-family: "Bree Serif";
    font-size: 10px;
    font-weight: 500;
}

.recommended-books-padding {
    margin-left: 6px;
}

.details-page-image {
    height: 230px;
    width: 150px;
    background-size: cover;
}

.details-page-book-name {
    color: white;
    font-family: "Bree Serif";
    font-size: 25px;
    font-weight: 500;
}

.details-page-center {
    text-align: center;
}

.details-page-descriptive {
    color: #e4e7eb;
    font-family: "Bree Serif";
    font-size: 12px;
    font-weight: 500;
    width: 60vw;
    margin: auto;
    line-height: 1.5;
    /* text-align: center; */
}

@media screen and (min-width: 768px) {
    .details-page-descriptive {
        font-size: 18px;
        margin-bottom: 20px;
    }
}    