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

body{
    background-color:hsl(212, 45%, 89%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
}

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

.card{
    background-color: white;
    display: flex;
    flex-direction: column;
    padding: 20px 16px;
    align-items: center;
    width: 100%;
    max-width: 320px;
    border-radius: 10px;
    height: 499px;
    box-sizing: border-box;
}

.text{
    text-align: center;
}


h1{
    color: hsl(218, 44%, 22%);
    font-size: 20px;
    font-weight: 00;
    text-align: center;    
    letter-spacing: 0.5px;;
    }

p{
    color: hsl(216, 15%, 48%);
    font-size: 15px;
    font-weight: 300;
    margin-top: 17px;
    line-height: 1.3rem;
}

.qr-code{
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin-bottom: 20px;
    border-radius: 10px;
    max-width: 288px;
}

footer{
    font-weight: 400;
}

