* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    cursor: pointer;
}

:root {
    --slate-300: #D5E1EF;
    --slate-500: #68778D;
    --slate-900: #1F314F;
    --white: #fff;
    --spacing-200: 16px;
    --spacing-300: 24px;
    --spacing-500: 40px;
}

.outfit-regular {
    font-family: Outfit, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.2px;
    color: var(--slate-500);
}
.outfit-bold {
    font-family: Outfit, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0px;
    color: var(--slate-900);
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--slate-300);
}
.card {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-200);
    padding-bottom: var(--spacing-500);
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.0477);
}
.card__qr-code-img {
    margin-bottom: var(--spacing-300);
    border-radius: 10px;
}
.card__text-container {
    max-width: 256px;
}
.card__title {
    margin-bottom: var(--spacing-200);
}