/* Variables */
:root {
    --white: hsl(0, 0%, 100%);
    --light-gray: hsl(212, 45%, 89%);
    --grayish-blue: hsl(220, 15%, 55%);
    --dark-blue: hsl(218, 44%, 22%);
}

body {
    background-color: var(--light-gray);
    font-family: "Outfit", sans-serif;
    font-size: 15px;
}

.qr-code-card {
    background-color: var(--white);
    width: 288px;
    margin: 100px auto 20px auto;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 15px hsla(220, 15%, 55%, 0.25);
}

.qr-code-card img {
    width: 100%;
    height: 288px;
    border-radius: 10px;
}

.qr-code-card h1{
    font-weight: 700;
    color: var(--dark-blue);
}

.qr-code-card p {
    font-weight: 400;
    color: var(--grayish-blue);
}

/* Attribution */
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
