@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
}
body{
    font-family: "Figtree", serif;
    margin: 0;
    background-color: hsl(47, 88%, 63%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card{
    width: 350px;
    max-width: calc(100% - 15px);
    background-color: hsl(0, 0%, 100%);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid hsl(0, 0%, 7%);
    box-shadow: 5px 5px 0px hsl(0, 0%, 7%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.card img{
    max-width: 100%;
    border-radius: 10px;
}
.card button{
    border: none;
    outline: none;
    background-color:hsl(47, 88%, 63%) ;
    width: fit-content;
    padding: 5px 10px;
    font-weight: bold;
    border-radius:5px;
}
.card p:first-of-type,
.card p:last-of-type{
    color: hsl(0, 0%, 42%);
    font-size: 15px;
}
.card h1{
    color: hsl(47, 88%, 63%);
    font-size: 20px;
}
.card p:last-of-type{
    line-height: 1.4rem;
}
.card div{
    display: flex;
    gap:15px;
    align-items: center;
}
.card div img{
    width: 50px;
}
.card h2{
    font-size: 14px;
}