body {
    font-family: Figtree, Arial, Helvetica, sans-serif;
    background: hsl(47, 88%, 63%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

a {
    cursor: pointer;
}

.card {
    background: white;
    /* display: flex; */
    flex-direction: column;
    justify-self: center;
    align-self: center;
    width: 320px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid black;
    -webkit-box-shadow: 8px 8px 0 0 #000000;
box-shadow: 8px 8px 0 0 #000000;

h1 {
    font-size: 24px;

    a:hover {
        color: hsl(47, 88%, 63%);
    }
}


    p {
        color: #765;
    }

    img {
        border-radius: 10px;
        display: block;
        width: 100%;
        max-width: 320px;
    }    
}

.card-content {
        margin-top: 20px;

}

.tag {
    background: hsl(47, 88%, 63%);
    padding: 5px;
    display: inline-block;
    border-radius: 5px;
    margin: 0 0 10px 0;
}

.user {
    display: flex;
    align-items: center;

    span {
        font-weight: bold;
    }

    img {
        display: block;
        margin-right: 20px;
        width: 40px;
    }

}

@media (width >= 1440px) {

    body {

    }
}