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

body {
    background-color: #D5E1EF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; 
}

.qr-code__container {
    max-width: 320px;
    padding: 16px 16px 40px 16px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.qr-code__image {
    width: 100%;
    border-radius: 10px; 
}

.qr-code__heading {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0px;
    color: #1F3347;
    text-align: center;
    padding: 16px 0;
}

.qr-code__subheading {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.2px;
    color: #687B8D;
    text-align: center;
}

.attribution {
  display: none;
}