: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 {
    margin: 0px;
    padding: 0px;
    height: 100vh;
    background-color: var(--light-gray);
    display: flex;
    justify-content: center;
    align-items: center;
}

article {
    width: 285px;
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    border-radius: 25px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    
    align-items: center;
}

img {
    content: url("./images/image-qr-code.png");
    width: 286px;
    height: 286px;
    border-radius: 10px;
}

h2 {
    color: var(--dark-blue);
    padding-inline: 18px;
    font-size: 22px;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 15px;
}

p {
    color: var(--grayish-blue);
    padding-inline: 18px;
    font-size: 15px;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 25px;
}