body {
    background-color: hsl(47, 88%, 63%);
    font-family: "Figtree", sans-serif;
    font-size: 1rem;
    margin: 0;
    text-align: left;
    color: hsl(0, 0%, 7%);
}

.blog_card_container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;  
}

.blog_card {
    background-color: white;
    width: 280px;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid hsl(0, 0%, 7%); 
    box-shadow: 8px 8px 0px;
    transition: 0.3s ease-in;
}

.blog_card:hover { 
    box-shadow: 14px 14px 0px;
    transition: 0.3s ease-out;
}

.blog_card img {
    border-radius: 10px;
    max-width: 100%;
}

.button {
    background-color:  hsl(47, 88%, 63%);
    max-width: max-content;
    padding: 5px 10px;
    font-size: 0.75rem;
    border-radius: 3px;
    font-weight: bold;
    margin-top: 15px; 
    transition: 0.5s ease-in;
}

.button:hover {
    cursor: pointer;
    background-color: black;
    color: hsl(47, 88%, 63%);
    transition: 0.5s ease-out;

}

.published {
    font-size: 0.75rem;
}

.header {
    font-size: 1.313rem;
    font-weight: 800;
    transition: 0.3s ease-in;
}

.header:hover {
    cursor: pointer;
    color: hsl(47, 88%, 63%);
    transition: 0.3s ease-out;
}

.description {
    color: hsl(0, 0%, 42%);
    line-height: 1.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.author_area {
    display: flex;
    align-items: center;
    justify-content: left;
}

.author_area img {
    max-width: 30px;
   
}

.author_text {
    font-size: 0.875rem;
    vertical-align: middle;
    padding: 0px 10px;
    font-weight: 800;
    transition: 0.3s ease-in; 
}
.author_text:hover {
    cursor: pointer;
    color: hsl(47, 88%, 63%);;
    transition: 0.3s ease-out;
}

@media screen and (max-width:350px) {
    .blog_card_container {
        padding: 15px;
    }
}


