@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(217, 45%, 22%);
}
html{
    font-family: 'Outfit', sans-serif;
    font-size: 62.5%;
}
body {
    background-color: var(--light-gray);
}
main {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}
.qr-code-component {
    width: 28rem;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background-color: var(--white);
    box-shadow: .1rem .1rem 1rem rgba(0, 0, 0, 0.096);
}
.qr-code-component img{
    width: 100%;
    display: block;
    border-radius: 1rem;
}
.text {
    width: 95%;
}
.text h2 {
    text-align: justify;
    text-align: center;
    color: var(--dark-blue);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 0;
}
.text p {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: justify;
    text-align: center;
    color: var(--grayish-blue);
}
