/* Slate 300: hsl(212, 45%, 89%)
- Slate 500: hsl(216, 15%, 48%)
- Slate 900: hsl(218, 44%, 22%) */

:root{
    --body-bg: hsl(212, 45%, 89%);
    --card-bg: Slate 900: hsl(218, 44%, 22%);
}

body{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100svh;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    background: var(--body-bg);
    gap: 1rem;
}

*{
    margin: 0;
    padding: 0;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.container{
    width: 80%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    align-items: center;
    text-align: center;
    padding-bottom: 2rem;
    background: white;
    border-radius: 1.5rem;
    gap: 1rem;
}

h1{
    font-size: 24px;
    font-weight: 700;
}

.container p{
    font-size: 14px;
}

img{
    width: 100%;
    border-radius: .5rem;
}