html {
    width: 100%;
    height: 100%;
}
body {
    font-family: 'Open Sans', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap-reverse;
    align-content: center;
    background-color: #d5e1ef;
    height: calc(100vh - 10px);
    width: calc(100vw - 10px);
}

.qr-code__container {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    box-sizing: border-box;
    padding: 1rem;
    margin: 3rem;
    background-color: white;
    width: 18rem;
}

.qr-code__image {
    display:block;
    width: 16rem;
    height: 16rem;
    border-radius: 16px;
}

.qr-code__inner-text--cta {
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
}
.qr-code__inner-text {
    display: inline-block;
    font-size: 0.9rem;
    text-align: center;
}

.qr-code__attribution a{
    text-decoration: none;
    color: #3685ff;
}