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

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

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

main{
    width: 350px;
    height: 530px;
    background-color:  hsl(0, 0%, 100%);
    padding: 20px;
    text-align: center;
    border-radius: 15px;
}

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

.content{
    width: 90%;
    margin: 0 auto;
    padding: 0 10px;
}

h2{
    font-weight: 700;
    margin: 20px 0;
    color: hsl(218, 44%, 22%);
}

p{
    line-height: 1.4;
    color: hsl(220, 15%, 55%);
}