@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Outfit", sans-serif;
    background-color: hsl(212, 45%, 89%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-size: 15px;
}

.container {
    max-width: 340px;
    height: auto;
    background-color: hsl(0, 0%, 100%);
    border-radius: 17px;
    padding: 18px;
    margin: 0 1em;
    text-align: center;
}

img {
    width: 100%;
    border-radius: 12px;
}

.text{
padding: 20px 5px;
}

.text h2{
    color:  hsl(218, 44%, 22%);
    padding-bottom: 15px;
    font-weight: 700;
}

.text p{
    color: hsl(216, 15%, 48%);
    padding: 0 20px 0 20px;
    font-weight: 400;
}