@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%);
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    background-color: var(--Light_gray);
}
.main-container{
    background-color: var(--White);
    width: 320px;
    height: 500px;
    margin: 60px auto;
    border-radius: 16px;
    padding: 16px;
}
.img-container{
    background-image: url("images/image-qr-code.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 288px;
    border-radius: 16px;
    margin-bottom: 24px;
}
h1{
    color: var(--Dark_blue);
    font-size: 23px;
    text-align: center;
    margin-bottom: 24px;
}
p{
    font-size: 16px;
    color: var(--Grayish_blue);
    text-align: center;
    padding: 0 10px;
}



/*FOOTER -----------------------------*/
.attribution {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}