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

:root {
    --slate-300: hsl(212, 45%, 89%);
    --slate-500: hsl(216, 15%, 48%);
    --slate-900: hsl(218, 44%, 22%);
    --mesure: 26ch;
    font-size: 15px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
}

* {
    box-sizing: border-box;
}


p, h1 {
    max-inline-size: var(--mesure);
    text-align: center;
}

main {
    background-color: var(--slate-300);
}

h1 {
    font-weight: 700;
    font-size: 1.25em;
    color: var(--slate-900);
}

.qr-code {
    width: 20em;
    height: 20em;
    border-radius: 0.5em;
}

.stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
    width: fit-content;
}

.stack > * {
    margin: 0;
}

.box-qr {
    background-color: white;
    width: fit-content;
    height: fit-content;
    padding: 1em;
    padding-block-end: 3em;
    border-radius: 1.25em;
    box-shadow: grey 0.1em 0.1em 0.5em;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100vw;
    min-height: 100vh;
}

.description {
    color: var(--slate-500);
}

