@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Oswald:wght@200..700&family=Sora:wght@100..800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #F2F5F9;
    font-family: "Lato", sans-serif;
}
.card
{
    width: 368px;
    background-color: #ffffff;
    margin: 180px auto auto auto;
    border-radius: 10px;
}
.card-image{
    width: 100%;
    height: 230px;
    position: relative;
}
.card-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.card-image svg{
    position: absolute;
    bottom: -32px;
    left: 0;
}
.card-body{
    padding : 30px;
 
}
.card-body h2{
    font-size: 24px;
    color: #111729;
}
    
.card-body p{
    margin-top: 20px;
    font-size: 16px;
    color: #4A5567;
}
.separator{
    width: 100%;
    height: 3px;
    background-color: #F2F5F9;
}
.foot{
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 15px;
    font-size: 16px;
}
.foot img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5px solid #F2F5F9;
    padding: 1px;
}
.foot p{
    color: #4A5567;
}
.foot h3{
    color: #111729;
    
}