*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font: inherit;
}

body {
    background-color: hsl(212, 45%, 89%);
    font-family: "Outfit", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.card {
    max-width: 320px;
    width: 100%;
    background: #fff;
    padding: 16px;
    border-radius:20px;
}
.card img {
    width: 100%;
    display: block;
    margin-bottom: 24px;
    border-radius: 10px;
}
h1 {
    font-size: 22px;
    font-weight: bold;
    line-height: 120%;
    max-width: 288px;
    text-align: center;
    margin-bottom: 16px;
}
p {
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0.2px;
    text-align: center;
    color: hsl(216, 15%, 48%);
    margin-bottom: 16px;

}
@media (max-width:375px) {
    body {
        padding-inline: 16px;
    }
}