@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
*{
    box-sizing: border-box;
}
body{
    height: 100vh;
    margin: 0;
    background-color: hsl(212, 45%, 89%);
    font-family: "Outfit", serif;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items:center;
}
.card{
    width: 300px;
    max-width: calc(100% - 30px);
    background-color: hsl(0, 0%, 100%);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}
.card img{
    max-width: 100%;
}
.card p:first-of-type{
    color: hsl(218, 44%, 22%);
    font-weight: 700;
}
.card p:last-of-type{
    color: hsl(216, 15%, 48%);
}