@font-face {
    font-family: "Outfit";
    src: url(https://fonts.google.com/specimen/Outfit) format("truetype");
    font-style: normal;
    font-weight: 400 700;
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--color-slate-300);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.qr-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: max-content;
    width: 100%;
    max-width: 300px;
    background-color: var(--color-white);
    margin: 0 auto;
    border-radius: 20px;
    padding: 1em;
    gap: 20px;
}

.qr-wrapper img {
    width: 100%;
    border-radius: 10px;
}

.qr-wrapper h1 {
    font-size: 20px;
    text-align: center;
    color: var(--color-slate-900);
}

p {
    font-size: 15px;
    text-align: center;
    color: var(--color-slate-500);
}

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

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