
:root{
    --Yellow: hsl(47, 88%, 63%);
    --White: hsl(0, 0%, 100%);
    --Grey: hsl(0, 0%, 50%);
    --Black: hsl(0, 0%, 7%);
}
html, body{
    margin: 0;
    height: 100vh; 
}
body{
    box-sizing: border-box;
    background-color: var(--Yellow);
    font-family: 'Figtree', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container{
    background-color: var(--White);
    width: 375px;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 10px 10px black;

}
#imagem{
    width: 100%;
    border-radius: 25px;
}
.status{
    background-color: var(--Yellow);
    width: fit-content;
    height: 30px;
    border-radius: 5px;
    margin: 10px;
    text-align: center;
    font-style:oblique;
    font-size: 15px;
    display: flex;
    align-items: center;
    margin: 30px 0px 10px 0px;
    padding: 0px 10px;
    box-shadow: 1px 1px rgba(0, 0, 0, 0.193);
}
.status h1{
     font-size: 20px;
}
#date{
    font-style: italic;
}
#text{
    color: var(--Grey);
    font-size: 16px;
}
#title:hover{
    color: var(--Yellow);
   cursor: pointer;
}
.perfil{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-style:oblique;
}
.perfil img{
    width: 40px;
    border-radius: 50%;
    box-shadow: 1px 1px rgba(0, 0, 0, 0.193);
}
@media (max-width:500px) {
    .container{
        width: 70%;
    }
}
