* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

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

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card {
    background: #fff;
    padding: 16px;
    padding-bottom: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 320px;
    max-height: 499px;
    gap: 24px;
}

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

h1 {
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0;
    font-weight: bold;
    margin: 16px;
    color: #1F314F;
    margin-top: 24px;
}

p {
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0.2px;
    color: #68778D;
    margin-left: 16px;
    margin-right: 16px;
}

@media (max-width: 375px) {
    .card {
        max-width: 320px;
    }
}

.attribution {
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 11px;
    text-align: center;
    color: hsl(228, 45%, 44%);
    background-color: #fff;
    padding: 10px 0;
    font-family: 'Outfit', sans-serif; 
    line-height: 140%;
    letter-spacing: 0.2px;
  }
