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

* {
    margin: 0;
    box-sizing: border-box;
    font-size: 15px;
}

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

.card {
    width: 320px;
    padding: 16px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
}

.card > img {
    position: relative;
    max-width: 100%;
    border-radius: 20px;
}

h1 {
    padding-top: 10px;
    padding-bottom: 10px;
    color: hsl(218, 44%, 22%);
}

p {
    padding-top: 10px;
    padding-bottom: 10px;
    color: hsl(220, 15%, 55%);
}