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

:root{
    --white: hsl(0, 0%, 100%) ;
    --light_gray: hsl(212, 45%, 89%) ;
    --grayish_blue: hsl(220, 15%, 55%) ;
    --dark_blue: hsl(218, 44%, 22%)   ;
}

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

body{
    font-family: 'Outfit', sans-serif;
}

#app{
    width: 100vw;
    min-height: 100vh;
    background: var(--light_gray);

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

.qr_code_card_container{
    width: 320px;
    background: var(--white);
    padding: 1em;
    border-radius: 1.25em;
}

.qr_code_image img{
    width: 100%;
    border-radius: .625em;
}

.text_bold{
    font-weight: 700;
    color: var(--dark_blue);
    margin-top: 1em;
    text-align: center;
}

.text_muted{
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    color: var(--grayish_blue);
    padding: 1em 1em 1.5em;
}