* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body {
    background-color:hsl(47, 88%, 63%);
    font-family: 'Figtree', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 100vh;
}
.container {
    border: 1px solid black;
    background-color: hsl(0, 0%, 100%);
    width: min(380px, 100%);
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: 18px;
    box-shadow: 10px 10px 0px black;
}
.blog-card img {
    width: 100%;
    display: block;
    border-radius: 15px;
}
.content {
    padding-top: 20px;
}
.tag {
    background-color:hsl(47, 88%, 63%);
    font-weight: 700;
    padding: 5px;
    border-radius: 6px;
}
h1 {
    color: hsl(0, 0%, 7%);
    font-weight: 800;
    font-size: 25px;
    margin: 10px;
}
.date {
    display: flex;
    font-weight: 500;
    font-size: 14px;
    padding: 20px 10px 10px 10px;
    color: hsl(0, 0%, 7%);
}
p {
    font-size: 16px;
    color: hsl(0, 0%, 42%);
    margin: 15px 10px 20px 10px;
    line-height: 25px;
}
.man-photo img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: block;
}
.author-name {
    font-size: 14px;
    color: hsl(0, 0%, 7%);
}
.man-photo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    margin-top: 10px;
}

