
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@600;800&family=Kumbh+Sans:wght@400;700&family=Outfit:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Figtree', sans-serif;
    background-color: hsl(47, 88%, 63%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45vw;
}

.container{
    max-width: 365px;

    border: 1px solid black;
    border-radius: 1rem;
    box-shadow: 0.5rem 0.5rem 0px black;

    display: flex;

    gap: 1rem;
}
.wraper{
    background-color: white;
    padding: 15px;
    border-radius: 1rem;

}

img{
    max-width: 100%;
    display: block;
    border-radius: 0.7rem;
    min-width: 100%;
}


.content{
    padding-top: 20px;
}
 .type{
     background-color:  hsl(47, 88%, 63%);
     font-weight: 800;
     width: 85px;
     border-radius: 8%;
     padding: 0.5rem 1rem 0.5rem 1rem;
 }
 .date{
     padding-top: 20px;
     color:  hsl(0, 0%, 7%);
 }

 h2{
     padding-top: 20px;
 }

 .description{
     padding-top: 20px;
     font-size: 16px;
     line-height: 1.5rem;
     color: hsl(0, 0%, 50%);
 }

 .footer{
     display: flex;
     align-items: center;
     gap: 20px;
     padding-top: 20px;
 }
 .image{
     width: 2.5rem;
 }
