* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: hsl(47, 88%, 63%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}

.card {
    width: 400px;
    background-color: hsl(0, 0%, 100%);
    font-family: "Figtree";
    height: fit-content;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid black;
    border-radius: 25px;
    box-shadow: 6px 7px 0px hsl(0, 0%, 0%);
}

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

span {
    display: block;
    margin: 15px 0;
}

#tag {
    background-color: hsl(47, 88%, 63%);
    padding: 5px 10px;
    font-weight: 800;
    width: fit-content;
    border-radius: 5px;
}

#date {
    font-weight: 500;
}

h2 {
    font-weight: 800;
    margin: 15px 0;
}

p {
    color: hsl(0, 0%, 42%);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
}

.user {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

#avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.user span {
    font-weight: 800;
    margin-left: 10px;
}

.attribution {
    font-size: 11px;
    text-align: center;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}