* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: hsl(212, 45%, 89%);
}

.container{
    width: 350px;
    height: 520px;
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 0 40px rgba(0,0,0,0.1);
}

.text-box {
    width: 85%;
    text-align: center;
    display: inline-block;
}

.container h2 {
    margin-top: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: hsl(218, 44%, 22%);
}
.container p {
    margin-top: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: hsl(216, 15%, 48%);
}

#image-qr-code {
    width: 100%;
    border-radius: 10px;
}

/* =============================== */

.attribution {
    margin-top: 20px;
    font-size: 11px;
    text-align: center;
    font-family: "Outfit", sans-serif;
    color: hsl(216, 15%, 48%);
}

.attribution a {
  color: hsl(218, 44%, 22%);
}
