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

body {
    background-color: #D5E1EF;
    height: 100vh;
    display: flex;
    font-family: 'Outfit', sans-serif;
}



.card {
    background-color: #FFFFFF;
    border-radius: 1.25rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 1rem;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: min-content;
    padding-bottom: 40px;
    gap: 24px;
}


.qr-code{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 288px;
    width: 288px;
    border-radius: 0.625rem;
    margin-bottom: 24px;
}


.content{
 display: flex;
 padding: 0px 16px;
 flex-direction: column;
 align-items: center;
 gap:1rem;
 align-self: stretch;

}

.title{
    font-size: 1.3rem;
     margin: 0px;
    font-family: 'Outfit', sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    font-feature-settings: 'liga' off, 'clig' off;
    text-align: center;
}

.subtitle{
    font-size: 0.938rem;
    margin: 0px;
    font-style: normal;
    font-family: 'Outfit', sans-serif;
    line-height: 140%;
    letter-spacing: 0.013rem;
    text-align: center;
    color: #6B7280;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
}

footer .attribution {
    font-size: 0.75rem;
    margin-top: 1rem;
    font-family: 'Outfit', sans-serif;
    line-height: 140%;
    letter-spacing: 0.013rem;
    color: #6B7280;
    padding: 0.5rem 0;
}