*{
    margin: 0;
    padding: 0;
    outline: 0;
}
img{
    vertical-align: middle;
}
a{
    text-decoration: none;
}

body{
    background: rgba(244, 208, 78, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.blog_card{
    background: rgba(255, 255, 255, 1);
    width: 360px;
    padding: 24px;
    height: 474px;
    border-radius: 20px;
    box-shadow: 8px 8px 0px 0px rgb(0, 0, 0);
    border: 1px solid black;
}

.blog_head{
    display: flex;
    justify-content: center;
}
.blog_head img{
    width: 100%;
}

.blog_contenet{
 padding-top: 20px;
}
.blog_contenet button{
    padding: 4px 12px 4px 12px;
    background: rgba(244, 208, 78, 1);
    border-radius: 4px;
    border: 0;
}
.blog_contenet button a {
    font-size:14px ;
    font-weight: bold;
    line-height: 150%;
    letter-spacing: 0px;
    font-family: "Figtree", serif;
    color: rgba(17, 17, 17, 1) ;
} 
.blog_contenet .date{
    font-size:14px ;
    font-weight: medium;
    font-family: "Figtree", serif;
    color: rgba(17, 17, 17, 1) ;
    line-height: 150%;
    letter-spacing: 0px;
    padding-top: 12px;

}

.blog_contenet h1{
    font-size:24px ;
    font-weight: 900;
    font-family: "Figtree", serif;
    color: rgba(17, 17, 17, 1) ;
    line-height: 150%;
    letter-spacing: 0px;
    padding-top: 12px;
    transition: color 0.3s ease, transform 0.3s ease;

}
.blog_contenet h1:hover{
    color: rgba(244, 208, 78, 1);
    cursor: pointer;
}

.blog_contenet .para{
    font-size:16px ;
    font-weight: medium;
    font-family: "Figtree", serif;
    color: rgba(107, 107, 107, 1) ;
    line-height: 150%;
    letter-spacing: 0px;
    padding-top: 12px;

}
.blog_footer {
    padding-top: 24px;
}
.blog_footer img{
    margin-right: 12px;
    
}

.blog_footer span{
    color: rgba(17, 17, 17, 1);
    font-weight: 900;
    font-family: "Figtree", serif;
    line-height: 150%;
    letter-spacing: 0px;
    font-size: 14px;
}

@media only screen and (min-width: 600px) {
    .blog_card{
        width: 327px;
        height: 501px;   
    }
}
/* blog_card
blog_head
blog_contenet
blog_footer */
/* <uniquifier>: Use a unique and descriptive class name
<weight>: Use a value from 300 to 900

.figtree-<uniquifier> {
  font-family: "Figtree", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */