:root {
    --background-color: hsl(212, 45%, 89%);
    --card-background: hsl(0, 0%, 100%);
    --primary-text-color: hsl(218, 44%, 22%);
    --secondary-text-color: hsl(216, 15%, 48%);
}

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

@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Outfit/Outfit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: bold;
}

@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Outfit/Outfit-Bold.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

body {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--background-color);
    font-family: 'Outfit', sans-serif;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.card {
    width: 100%;
    max-width: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1rem 2.5rem 1rem;
    border-radius: 1.25rem;
    background-color: var(--card-background);
    box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.11);
}

.card img {
    width: 100%;
    max-width: 18rem;
    border-radius: .625rem;
}

.card .content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#qr-code-title {
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0px;
    font-size: 1.375rem;
    color: var(--primary-text-color);
}

#qr-code-description {
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.2px;
    font-size: .9375rem;
    color: var(--secondary-text-color);
}