@font-face {
    font-family: 'poppins';
    src: url('./Poppins/Poppins-Regular.ttf');
    font-style: normal;
}

@font-face {
    font-family: 'poppins-semibold';
    src: url('./Poppins/Poppins-SemiBold.ttf');
    font-style: semibold;
}

nav{
    color: red !important;
}

html
html,
body,
div,
button,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span{
    font-family: 'poppins', sans-serif;
}

.nav-link:hover{
    color: #FF9900 !important;
}

.text-primary-orange{
    color: #f90;
}


hr{
    width: 128px; 
    border: none; 
    border-top: 2px solid;
    color: #FF9900; 
    opacity: 1;
   
}

.title-container{
    width: 78%; 
    margin-top: 100px;
}

.card{
    height: 664px;
}
div.product-list > div{
    flex-direction: column;
    display: flex;
}

.ebook-img{
    width: 92%;
    margin: 0 auto;
    align-self: flex-start;
}

.card{
    border: none;
    height: 600px;
}

.card-body{
    padding: 0;
}

.card-title{
    font-weight: 600;
    font-size: 24px;
    width: 90%;
    text-align: center;
    display: block;
    margin: 0 auto;
    margin-top: 32px;
}

.card-text{
    font-size: 16px;
    width: 90%;
    text-align: center;
    display: block;
    margin: 20px auto 0;
   
}

.card-footer{
    background-color: transparent;
    border: none;
}

.ebook-price{
    font-size: 27px;
    text-align: center;
    font-weight: 700;
    margin-top: 27px;
    color: black;
}

button.buy-now{
    width: 92%;
    height: 4rem;
    background-color: #FF9900; 
    color: white;
    border: none; 
    border-radius: 20px;
    margin: 0 auto 0;
    padding: 16px 21px;
    font-size: 22px;
    font-weight: 400;
    
    display: block;
}

button.article-view-more{
    width: fit-content;
    display: block;
    height: 4rem;
    background-color: #FF9900; 
    color: white;
    border: none; 
    border-radius: 20px;
    margin: 64px auto 0;
    padding: 16px 21px;
    font-size: 22px;
    font-weight: 400;
}

.product-list{
    width: 80%;
    margin: 50px auto;
}

@media only screen and (max-width: 500px) {

    hr{
        width: 128px; 
        border: none; 
        border-top: 2px solid;
        color: #FF9900; 
        opacity: 1;
        margin: 0 auto;
    }

    .title-container{
        width: 90%;
        margin-top: 40px;
    }

    .title-text{
        text-align: center;
    }

    .product-list{
        width: 90%;
        margin: 0 auto;
    }

    .card-title{
        font-size: 16px;
    }

    .card{
        height: fit-content;
    }
    .card-text{
        font-size: 12px;
    }

    .ebook-price{
        font-size: 16px;
        text-align: center;
        font-weight: 600;
        margin-top: 27px    
    }

    button.buy-now{
        /* width: 92%;   */
        height: fit-content;
        background-color: #FF9900; 
        color: white;
        border: none; 
        border-radius: 10px;
        margin: 0 auto 0;
        padding: 12px 80px;
        font-size: 12px;
        font-weight: 400;
        display: block;
        margin-bottom: 32px;
    }

    p{
        font-size: 12px;
    }
    
}