* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #D5E1EF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Outfit';
    padding-top: 5%;
}

.main-container{
    width: 320px;
    height: 499px;
    background-color: #FFFFFF;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.qr-container{
    padding-top: 16px;
}

.qr{
    width: 288px;
    height: auto;
    border-radius: 10px;
}

.text-container{
    width: 288px;
    height: 131px;
    margin-top: 24px;
    margin-bottom: 40px;
    padding-left: 16px;
    padding-right: 16px;
}

.text-1{
    color: #1F314F;
    font-weight: bold;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0px;
    margin-bottom: 16px;
}

.text-2{
    color: #68778D;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0.2px;
}

