*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body{
    background-color: hsl(212, 45%, 89%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container{
    background-color: white;
    width: 250px;
    height: auto;
    padding: 10px;
    border-radius: 8px;
    padding-bottom: 30px;
}

.qr_code{
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.text_box{
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

h1{
    font-size: 15px;
    font-weight: 700;
    color: hsl(218, 44%, 22%);
    margin-bottom: 12px;
}

p{
    font-size: 11px;
    font-weight: 400;
    color: hsl(216, 15%, 48%);
}

