*{
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: hsl(47, 88%, 63%);
    font-family: 'Figtree';
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container{
    background-color: hsl(0, 0%, 100%);
    padding: 1.2rem;
    border-radius: 1rem;
    width: 320px;
    box-shadow: 7px 7px 0 0 black;
    border: 1px solid black;       
}

.banner{
    border-radius: 1rem;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

.label{
    background-color: hsl(47, 88%, 63%);
    color: hsl(0, 0%, 7%);
    padding: 4px 12px;
    display: inline-block;
    border-radius: 2px;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.published{
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 1rem;
    color: hsl(0, 0%, 7%)
}

.topic{
    font: 800;
    font-size: 20px;
    color: hsl(0, 0%, 7%);
    margin-bottom: 1rem;
    transition: color 0.4s ease;
    cursor: pointer;
}

.topic:hover {
    color: hsl(47, 88%, 63%);

}

.content{
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 1rem;
    color: hsl(0, 0%, 42%);
    margin-bottom: 1rem;
}

.profile{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 12px;
}

.profile img {
    width: 32px;
    height: 32px;
}