@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;

    background-color: hsl(47, 88%, 63%);
    font-family: "Figtree", sans-serif;
    font-weight: 500;
}

p {
    font-size: 16px;
}

main {
    margin: 2rem;
}

.card {
    border: 1px solid hsl(0, 0%, 7%);
    border-radius: 15px;
    background-color: white;
    padding: 1.5rem;

    width: 330px;
    box-shadow: 5px 5px 0px 3px;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: 1.5rem;

}

.image-container {
    width: 100%;
}

.illust {
    border-radius: 10px;
    width: 100%;
    background-size: cover;
}

.tag {
    padding: .5rem 1rem;
    background-color: hsl(47, 88%, 63%);
    font-weight: 900;

    border-radius: 5px;
    margin-top: 1.5rem;
}

h1 {
    font-size: 26px;
    font-weight: 800;
}

.desc {
    color: hsl(0, 0%, 42%);
    line-height: 1.5rem;
}

.profile {
    display: flex;
    align-items: center;
    justify-content: start;
    align-self: self-start;
    column-gap: 1rem;

    margin-top: 2rem;
}

.pfp {
    width:45px;
}

.name {
    font-weight: 900;
}

@media screen and (min-width: 380px) {
    .card {
        width: 375px;
    }
}