.books{
    gap: 30px;
    display: flex;
    margin-top: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    > .card{
        width: 280px;
        border: none;
        display: flex;
        align-items: center;
        > img{
            width: 200px;
            min-height: 250px;
            height: 250px;
            object-fit: contain;
        }
        > div{
            margin-top: 5px;
            > a{
                font-size: 23px;
                transition: all .3s ease;
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -ms-transition: all .3s ease;
                -o-transition: all .3s ease;
            }
            > a:hover{
                color:#03A19E;
            }
            >p{
                font-size: 16px;
                margin: 0%;
                font-weight: 600;
            }
            > .writer-name{
                font-weight: 500;
            }
        }
    }
}
/* book-store */


.book-store{
    display: flex;
    align-items: center;
    justify-content: space-between;
    > .card{
        border: none;
        display: flex;
        align-items: center;
        justify-content: start;
        flex-direction: column;
        > div > img{
            height: 300px;
            object-fit: contain;
        }
    }
    > div{
        width: 50%;
        margin-top: 50px;
        > div{
            > h5{
                font-size: 35px;
            }
            > div{
                margin-top: 20px;
                > h6{
                    font-size: 18px;
                    font-weight: 550;
                }
                >p{
                    font-size: 14px;
                    font-weight: 500;
                    margin: 0%;
                }
            }
            > .price{
                margin-top: 20px;
                font-size: 20px;
                font-weight: 600;
            }
        }
    }
}

