*,
*::after,
*::before {
    box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
figure {
    margin: 0;
}

canvas,
video,
svg,
picture,
img {
    display: block;
    max-width: 100%;
}

:root {
    --background-color: hsl(212, 45%, 89%);
    --background-color-card: hsl(0, 0%, 100%);

    --color-hd: hsl(218, 44%, 22%);
    --color-txt: hsl(216, 15%, 48%);
    --font-family: "Outfit", sans-serif;

    --fs: 15px;
    --fs-rg: 1rem;
    --fs-md: 1.25rem;
    --fs-lg: 1.5rem;
    --fs-xl: 1.75rem;
    --fs-xxl: 2rem;
}

body {
    font-family: var(--font-family);
    color: var(--color-txt);
    min-height: 100dvh;
    background-color: var(--background-color);
    margin: 1rem;

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


    p {
        line-height: 1.4;
    }
}

.container {
    flex-grow: 1;

    display: flex;
    align-items: center;
    justify-content: center;
}

.qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;

    background-color: var(--background-color-card);
    padding: 1rem;
    padding-bottom: 2.5rem;
    min-width: 300px;
    width: 310px;
    border-radius: 1.1rem;

    img {
        border-radius: 10px;
    }

}

.qr__hd h1 {
    font-size: 21px;
    color: var(--color-hd);
}

.attribution {
    font-size: 11px;
    text-align: center;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}