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

:root {
    --White: hsl(0, 0%, 100%);
    --Slate-300: hsl(212, 45%, 89%);
    --Slate-500: hsl(216, 15%, 48%);
    --Slate-900: hsl(218, 44%, 22%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    align-items: center;

    background: hsl(212, 45%, 89%);
}

.container {
    max-width: 28rem;
    height: 40rem;
    background: hsl(0, 0%, 100%);
    border-radius: 1rem;
    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

img {
    width: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 1rem;
}

h1 {
    text-align: center;
    line-height: 3rem;
    margin-top: 1rem;
    letter-spacing: 0.7px;
}

p {
    text-align: center;
    color:hsl(216, 15%, 48%);
    margin: 0 1rem 1rem;
}
