@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --OUTFIT: 'Outfit';
    --White: hsl(0, 0%, 100%);
    --Slate1: hsl(212, 45%, 89%);
    --Slate2: hsl(216, 15%, 48%);
    --Slate3: hsl(218, 44%, 22%);
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: var(--OUTFIT);
    background-color: var(--Slate1);
}
.container{
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    background-color: var(--White);
    margin: 5rem;
    padding: 1rem;
    width: 100%;
    max-width: 300px;
}

.qr-img{
    display: block;
    width: 100%;
    padding-bottom: 1rem;
}
img{
    width: 100%;
    object-fit: cover;
    border-radius: 0.6rem;
}
.content{
        text-align: center;
}

h3{
    color: var(--Slate3);
    padding-bottom: 0.8rem;
}
p{
    color: var(--Slate2);
    font-size: 0.9rem;
    padding-bottom: 1.5rem;
}  

@media only screen( max-width: 700px) {
    body{
        background-color: grey;
    }
}
