
@media(max-width:375px){
    .main-container{
        width: 100%;
        height: 100vh;
        
    }
    .card-body{
      max-width: 90%;
     max-height: 600px;
        
    }
}

body{
    margin: 0;
    font-family: "Outfit", sans-serif;
    background-color:  hsl(216, 15%, 48%);
  
}

.main-container{
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    max-width: 1440px;
    height: 100vh;
    margin: auto;
    flex-direction: column;
    gap: 20px;

}

.card-body{
    width: 400px;
    height: 630px;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    background-color:  hsl(0, 0%, 100%);
    border-radius: 20px;
    ;
}

.QR{
    width: 92%;
    height: 400px;
    box-sizing: border-box;
    display: flex;
    border-radius: 30px;
    padding: 15px 0;
    
}

.QR img{
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.text{
    width: 70%;
    display: flex;
    flex-direction: column;
    text-align: center;
    
    
}

text h1{
    font-size: 24px;
    color: hsl(218, 44%, 22%);
    margin: 20px 0;
}

.text p{
    font-size: 16px;
    color: hsl(216, 15%, 48%);
}