*{
    margin: 0;
    padding: 0;
}

.main{
    display: flex;
    height: 80vh;
    width: 80vw;
    align-items: center;
    justify-content: center;
    margin: 60px auto;
    background-color: hsl(212, 45%, 89%);
    box-shadow: 10px 10px 10px 20px hsl(0, 0%, 92%);
}

.qr-container{
    background-color: hsl(0, 0%, 100%);
    height: 430px;
    width: 300px;
    justify-content: center;
    align-items: center;
    margin: auto;
    border-radius: 5%;
}

 .qr-container p{
    color: hsl(210, 4%, 67%);
    font-size: 14px;
    font-weight: 400;
    padding: 10px 0;
 }
 .qr-container h1{
    font-size: 15px;
    font-weight: 700;
    padding: 0 9px;
    color: hsl(218, 44%, 22%);
 }

 img{
    height: 260px;
    width: 260px;
    border-radius: 5%;
}

.image{
    align-items: center;
    justify-content: center;
    display: flex;
    padding-top: 20px;
}

.text-container{
    padding: 20px 50px;
    text-align: center;
}

@media screen and (max-width: 375px){
    .main{
        width: 75vw;
    }
}


