@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
*{
    padding: 0;
    margin: 0;
}
.container{
    height: 100vh;
    width: 100vw;
    background-color: hsl(212, 45%, 89%);
    display: flex;
    justify-content: center;
    /* text-align: center; */
    align-items: center;
}
.qrbox{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* justify-content: space-between; */
    height:450px;
    width: 280px;
    background-color: white;
    /* border: 2px solid red; */
    border-radius: 15px;
}
.qrbox img{
    width: 260px;
    border-radius: 10px;
}
.div1{
    margin-bottom: 20px;
}
.div2{
    margin: 0px 15px 30px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    /* border: 2px solid red; */
    font-family: 'Outfit', sans-serif;
    
}
.div2a{
    /* background-color: blueviolet; */
    font-weight: 700;
    font-size: 20px;
    color: hsl(218, 44%, 22%);
}
.div2b{
    /* background-color: aqua; */
    font-weight: 400;
    font-size: 15px;
    color: hsl(220, 15%, 55%);
    margin-top: 10px;
}

