:root{
    --White: hsl(0, 0%, 100%);
    --Slate-300: hsl(212, 45%, 89%);
    --Slate-500: hsl(216, 15%, 48%);
    --Slate-900: hsl(218, 44%, 22%);
}
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    font-family: "Outfit", serif;
    background-color: var(--Slate-300);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.card {
    width: 320px;
    height: 499px;
    background-color: var(--White);
    padding: 16px 16px 40px;
    border-radius: 20px;
    box-shadow: 0 25px 25px rgba(0 0 0 / 4.77%);
    display: grid;
    gap: 24px;
}
.card img{
    height: 288px;
    border-radius:10px ;
}
.card .content{
    width: 288px;
    height: 131px;
    padding: 0 16px;
    gap: 16px;
    display: grid;
}
.card .content h3{
    width: 256px;
    height: 52px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--Slate-900);
}
.card .content p{ 
    width: 256px ;
    height: 63px;
    color: var(--Slate-500);
    line-height:1.4;
    letter-spacing: .2px;
    font-size: 15px;
}