@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'poppins', sans-serif;
}
section home{
    padding-bottom: 50;
    width: 100%;
    min-height: 80vh;
    font-weight: 700;
}
#home h1{
    padding-top: 30px;
}
#home img{
    width: 100px;
    height: 70px;
}
#home{
    background-color: rgb(255, 238, 206);
    text-align: center;
}
#home p{
    text-align: justify;
    margin-top: 50px;
    margin-left: 50px;
    margin-right: 50px;
}
#book{
    background: #e4f5bd;
}
#book h1{
    padding-top: 40px;
     font-size: 30px;
     letter-spacing: 2px;
     font-weight: 700;
     margin-top: 50px;
} 
#book img{
    width: 200px;
    height: 200px;
}
.card{
    width: 100;
    height: 300px;
    background: white !important;
    border: none !important;
    box-shadow: 15px 20px 20px rgba(0,0,0,.3) ;
                inset: 4px 4px 10px white;
    border-radius: 20px !important;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    margin: 20px;
}
.card:hover{
    box-shadow: inset 5px 5px 10px rgba(0,0,0,.3);
                inset:  -4px -4px 10px white;
    transition: .2s;
}
.card img{
    margin-top: 10px;
   
}

