
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;800&display=swap');

*  {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: var(--figtree);
    
}
:root {
    --figtree: 'Figtree', sans-serif;
    --Yellow: hsl(47, 88%, 63%);
    --White: hsl(0, 0%, 100%);
    --Grey: hsl(0, 0%, 50%);
    --Black: hsl(0, 0%, 7%);
}
body {
    width: 100%;
    height: 100%;
    background-color: yellow;
}
img{
    border-radius: 10px;
}
.container {
    margin: auto;
    margin-top: 20vh;
    background-color: white;
    border: 2px solid;
    width: 375px;
    padding: 20px 20px;
    border-radius: 10px;
    box-shadow: 16px 16px;
}
div{
    margin: 20px 0;
    
}
span{
    background-color: var(--Yellow);
    padding: 10px;
    border-radius: .3rem;
    font-weight: 800;
}
.data{
    padding-top: 10px;
    color: var(--Black);
    font-weight: bolder;
}
.text_ancora{
    color: var(--Black);
    font-weight: 600;
    font-size: 1.5rem;
}
.text_ancora:hover{
    color: var(--Yellow);
}
p{
    color: var(--Grey);
}
figure{
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 800;
}

