@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
*{
    padding: 0px;
    margin: 0px;
}
body{
    background-color:  hsl(212, 45%, 89%);
    font-family: "Outfit", sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-size: 15px;
}
.container{
    max-width: 330px;
    margin: 0 auto;
}
.card{
    background-color: #fff;
    padding: 18px;
    border-radius: 18px;
    text-align: center;
    margin: 0 1rem;
}
.card img{
    width: 100%;
    border-radius: 13px;
}
.text{
    padding: 20px 3px;
}
.text h2{
    margin-bottom: 14px;
    color: hsl(218, 44%, 22%);
}
.text p{
    color: hsl(220, 15%, 55%);
}