/* outfit-regular - latin */
    @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    src: url('./assets/outfit-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    }
/* outfit-700 - latin */
    @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    src: url('./assets/outfit-v15-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
    /* Colors */
    --main-background-color: hsl(212, 45%, 89%);
    --container-background-color: white;
    --text-color: hsl(216, 15%, 48%);
    --title-color: hsl(218, 44%, 22%);
    --attribution-color: hsl(228, 45%, 44%);
    --box-shadow-color: hsla(0, 0%, 0%, 0.048);
    /* Typography */
    --title-font-size: 22px;
    --text-font-size: 15px;
}

/* === Reset Styles === */

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

html, body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--main-background-color);
    font-family: "outfit", sans-serif;
}

.qr-card {
    width: 320px;
    height: 499px;
    padding: 16px 16px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 20px;
    box-shadow: 0px 25px 25px var(--box-shadow-color);
    background-color: var(--container-background-color);
}

.qr-code-img {
    border-radius: 10px;
}

.text-container {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.qr-card-title {
    color: var(--title-color);
    font-size: var(--title-font-size);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 120%;
}

.qr-card-text {
    color: var(--text-color);
    font-size: var(--text-font-size);
    letter-spacing: 0.2px;
    line-height: 140%;
}

footer {
    position: fixed;
    bottom: 0;
}

.attribution {
    font-size: 11px;
    text-align: center;
    padding: 1rem;
}
.attribution a {
    color: var(--attribution-color);
}