*{
margin:0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Poppins';

}
body{
    background-color: white;

}
.card-container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    margin-top: 100px;
}
.card{
    width:325px;
    background-color: #FED001;
    border-radius: 8px;
    overflow:hidden;
    box-shadow: 0px 2px 4px rgba (0,0,0,0.2);
    margin:20px;
    
}
.card img{
    width: 100%;
    height:auto;

}
.card-content{
    padding:16px;
}
.card-content h3{
    font-size: 28px;
    margin-bottom: 8px;
}
.card-container p{
    color:black;
    font-size: 15px;
    line-height:1.3;
}
.card-content .btn{
    display:inline-block;
    padding:8px 16px;
    background-color: white;
    text-decoration:none;
    border-radius:4px;
    margin-top: 16px;
    color: black;
}
.card:hover{
    background-color: #9DC88D;
    color: white;
    cursor: pointer;
    transform:scale(1.03);
    transition: all 1s ease;
}