:root {
    --blue: #2c7dfa;
    --blue-shade: #3685ff;
    --dark-navy: #1f314f;
    --gray: #7d889e;
    --light-gray: #d5e1ef;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

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

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
    align-items: center;
    min-height: 100vh;
}

.attribution {
    font-size: 11px;
    text-align: center;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.attribution a {
    color: var(--blue);
}

.card {
    border-radius: 20px;
    padding: 16px;
    max-width: 320px;
    background-color: var(--white);
}

.qr-code {
    border-radius: 10px;
    width: 288px;
    height: 288px;
}

h1 {
    color: var(--dark-navy);
    font-size: 1.375rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.text {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    padding: 24px 16px;
}

p {
    color: var(--gray);
    font-size: 15px;
    letter-spacing: 0.19px;
    font-weight: normal;
    margin: 0;
    text-align: center;
}
