@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

* {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body{
    background-color: #d6e2f0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
main {
    padding: 15px;
    width: 320px;
    height: 500px;
    background-color: #fff;
    border-radius: 1em;
}
main img {
    width: 100%;
    border-radius: 1em;
}
.text {
    padding: 15px;
}
.text h2 {
    color:hsl(218, 44%, 22%);
    text-align: center;
    font-size: 1.4em;
    margin: 10px 0 15px 0;
    line-height: 28px;
}
.text p {
    color: hsl(220, 15%, 55%);
    text-align: center;
}