html, body {
    background-color: hsl(47, 88%, 63%);
    height: 100%;
    font-family: "Figtree", sans-serif;
    font-size: 16px;
}
    

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.card {
    display: flex;
    flex-direction: column;
    background-color: hsl(0, 0%, 100%);
    border-radius: 20px;
    border: solid black 2px;
    width: 330px;
    height: 490px;
    padding: 20px;
    box-shadow: 8px 8px 0px #000;
}

.card img {
    width: 100%;
    border-radius: 10px;

}

.header p{
    color: hsl(0, 0%, 7%);
    font-weight:500;
}

.destaque {
    background-color: hsl(47, 88%, 63%);
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}

.content p{
    color: hsl(0, 0%, 42%);
    border-bottom: 10px;
    font-weight:500;
}

.content .title:hover {
    color: hsl(47, 88%, 63%);
    transition: color 0.3s ease;
}


.profile {
    display: flex;
    justify-content: start;
    align-items: self-end;
}

.profile img {
    width: 50px;
    height: 50px;
    padding-right: 20px;
}

.profile p{
    font-weight: bold;
}