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

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

:root {
    --white: hsl(0, 0%, 100%);
    --light-gray: hsl(212, 45%, 89%);
    --grayish-blue: hsl(220, 15%, 55%);
    --dark-blue: hsl(218, 44%, 22%);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

main {
    background-color: var(--white);
    margin: 20px;
    padding: 15px;
    border-radius: 20px;
    max-width: 320px;
    filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
}

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

section {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    gap: 1rem;
    margin: 1.1rem;
}

h1, p {
    text-align: center;
}

h1 {
    color: var(--dark-blue);
    font-size: 1.4rem;
}

p {
    color: var(--grayish-blue);
    font-size: 15.5px;
}