@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

:root {
    --c-grayish-blue: hsl(220, 15%, 55%);
    --c-white: hsl(0, 0%, 100%);
    --c-light-gray: hsl(212, 45%, 89%); 
    --c-dark-blue: hsl(218, 44%, 22%);
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    line-height: 1.4;
    background-color: var(--c-light-gray);
    box-sizing: border-box;
    font-weight: 400;
}

section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 30rem;
    background-color: var(--c-white);
    padding: 1.8rem;
    border-radius: 2rem;
    text-align: center;
}

.text {
    margin-top: 2rem;
}

img {
    width: 100%;
}

h1 {
    color: var(--c-dark-blue);
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-weight: 700;
}

p {
    color: var(--c-grayish-blue);
}