@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

: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%);
    --font-text-preset-1: 1.375rem;
    --font-text-preset-2: 0.9375rem;
    --font-family: Outfit;
    --font-weight: 400;
}

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

body {
    background-color: var(--color-slate-300);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh
}

main {
    width: 20rem;
    padding: 1rem 1rem 2.5rem 1rem;
    background-color: var(--color-white);
    border-radius: 1.25rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
}

.qr-Image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;

}

section {
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
}

h1 {
    font-size: var(--font-text-preset-1);
    font-family: var(--font-family), sans-serif;
    color: var(--color-slate-900);
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0;
    text-align: center;
}

p {
    font-size: var(--font-text-preset-2);
    font-family: var(--font-family), sans-serif;
    color: var(--color-slate-500);
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.0125rem;
    text-align: center;
}
